GET
/
v2
/
projects
API_KEY='live_...'
PARAMS='created_after=2024-01-01T00:00:00Z'
curl --request GET \
--url "https://api.scale.com/v2/projects?$PARAMS" \
--header "Authorization: Bearer $API_KEY"
{
  "projects": [
    {
      "id": "project_123",
      "name": "Project Name Example",
      "types": [
        "RLHF: Pref Ranking with Rewrites"
      ],
      "created_at": "2022-07-25T07:32:34.318Z",
      "models": [
        "gpt-4",
        "my-model-123"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Query Parameters

created_after
string

Projects with a created_at after the given date will be returned. A timestamp formatted as an ISO 8601 date-time string.

created_before
string

Projects with a created_at before the given date will be returned. A timestamp formatted as an ISO 8601 date-time string.

Response

200
application/json

List of projects.

The response is of type object.