FishSpeech Docs
API Reference

Profile

Read and update Open API account profile and quota.

Profile

Use profile endpoints to check the API token owner's account id, quota, tier, and credits.

Get Profile

GET /api/open/v1/profile
Authorization: Bearer YOUR_API_TOKEN

Response

{
  "user_id": "user_123",
  "api_quota_remaining": 988000,
  "tier": "pro",
  "credits": 1200
}

Update Profile

POST /api/open/v1/profile
Authorization: Bearer YOUR_API_TOKEN
Content-Type: application/json
{
  "webhookUrl": "https://example.com/webhooks/fishspeech"
}

The updateable fields are controlled by the server. Unknown fields may be ignored or rejected.