1. Go to Gorgias > Settings > REST API. 2. Create API key. 3. Use email:api_key as Basic auth.
| Base URL | https://{subdomain}.gorgias.com/api/ |
|---|---|
| API version | v1 |
| Auth | API key + email as Basic auth. Generate at Settings > REST API in Gorgias. |
| Request body | application/json |
| Pagination | cursor-based: cursor param. Response includes next_cursor. |
| Rate limit | 2 req/sec per API key. |
| Error format | JSON: {"message":"...","code":"..."} |
| Method | Path | Description |
|---|---|---|
GET | /tickets | List tickets |
POST | /tickets | Create ticket |
GET | /customers | List customers |
POST | /tickets/{id}/messages | Reply to ticket |
GET /api/tickets?limit=25
Authorization: Basic {base64(email:api_key)}
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ verify against the official docs before production use.