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_abc123",
      "name": "My Scale Project",
      "created_at": "2023-11-07T05:31:56Z",
      "types": [
        "RLHF: Pref Ranking"
      ],
      "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>

A timestamp formatted as an ISO 8601 date-time string.

created_before
string<date-time>

A timestamp formatted as an ISO 8601 date-time string.

Response

List of projects.

projects
object[]
required

Array of project objects