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

Required query parameters

You are expected to provide one of the following:

  • Project ID (project_id)
  • Project Name (project_name)

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

project_id
string

Scale's unique identifier for the project.

Example:

"project_abc123"

project_name
string

The name of the project.

Example:

"My Scale Project"

Response

200
application/json

Project details.

The response is of type object.