Skip to main content
This page describes how to create a project.
AIMP_ADMIN_API_KEY="ADMIN_API_KEY"

curl -i -X POST "https://{baseUrl}/{apiVersion}/projects" \
  -H "content-type: application/json" \
  -H "x-api-key: $AIMP_ADMIN_API_KEY" \
  -d '{
        "projectName": "example-project",
        "rateLimit": 10.0
      }'
The response will look like this:
{
  "id": "<string>",
  "projectName": "example-project",
  "apiKey": "<string>",
  "rateLimit": 10.0,
  "status": "CREATING"
}