GET
/
projects
/
{projectName}
curl --request GET \
  --url https://{baseUrl}/projects/{projectName} \
  --header 'x-api-key: <api-key>'
{
  "id": "example-project-id",
  "projectName": "example-project-name",
  "apiKey": "<API key>",
  "rateLimit": 10,
  "status": "ACTIVE"
}

Authorizations

x-api-key
string
header
required

Admin API Key.

Path Parameters

projectName
string
required

Project name.

Response

200
application/json

Project matched with a projectName.

The response is of type object.