GET
/
projects
curl --request GET \
  --url https://{baseUrl}/projects \
  --header 'x-api-key: <api-key>'
{
  "projects": [
    {
      "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.

Response

200
application/json

A list of projects.

The response is of type object.