Skip to main content
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"
      ]
    }
  ]
}
Every request sent to Scale’s API requires authentication. In short, your API Key is the Bearer token. See the Authentication section for more details.

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<date-time>

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<date-time>

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

Response

List of projects.

projects
object[]
required

Array of project objects