Skip to main content
The dashboard shows everything you need to start making requests: your organization, project, API key, project ID, and a working code snippet.

At a glance

FieldWhat it is
OrganizationTop-level container (your team or company)
ProjectThe active workload you’re working in
API KeyAuthentication credential for requests
Project IDUUID that scopes requests to this project
Code SnippetCopy-paste cURL command, ready to run

Ready-to-use snippet

The dashboard generates this for you — copy it, replace the content, run it:
curl --location 'https://api.zerogpu.ai/v1/responses' \
  --header 'content-type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'x-project-id: YOUR_PROJECT_ID' \
  --data '{
    "model": "YOUR_MODEL",
    "input": [
      {
        "role": "user",
        "content": "Your input text here..."
      }
    ],
    "text": {
      "format": {
        "type": "text"
      }
    }
  }'

From here