Skip to main content
GET
/
projects
/
{projectId}
cURL
curl --request GET \
  --url https://{baseUrl}/{version}/projects/{projectId} \
  --header 'content-type: <content-type>' \
  --header 'x-api-key: <x-api-key>'
{
  "id": "<string>",
  "projectName": "<string>",
  "apiKey": "<string>",
  "rateLimit": 123,
  "status": "CREATING"
}

Headers

content-type
string
default:application/json
required
x-api-key
string
required

Admin API Key.

Path Parameters

projectId
string
required

Project ID.

Response

200 - application/json

Project matched with a projectId.

id
string

Project ID.

projectName
string

Project name.

apiKey
string

Project API key.

rateLimit
number

Rate limit.

status
enum<string>

Status

Available options:
CREATING,
ACTIVE,
DELETING