Skip to main content
GET
https://api.cuttr.com
/
api
/
platform
/
v1
/
test
Test API Key
curl --request GET \
  --url https://api.cuttr.com/api/platform/v1/test \
  --header 'X-API-Key: <x-api-key>'
{
  "status": "working",
  "team_id": 42,
  "key_name": "my-production-key",
  "timestamp": "2025-01-15T10:30:00.000Z"
}

Headers

X-API-Key
string
required
Your API key. Create one from the dashboard.
Simple health-check endpoint to verify your API key, billing account, and rate limit are all working. This endpoint is free and does not deduct from your wallet.
This is the best way to confirm your integration is set up correctly before making billable requests.

Response

status
string
Always "working" on success.
team_id
integer
The team ID associated with your API key.
key_name
string
The name you gave this API key when you created it.
timestamp
string
ISO 8601 timestamp of the request.
{
  "status": "working",
  "team_id": 42,
  "key_name": "my-production-key",
  "timestamp": "2025-01-15T10:30:00.000Z"
}