Image API Overview
Base URL, authentication, and endpoint index for the GoodTake Image API
Overview
The GoodTake Image API lets you generate images with any enabled model through one unified surface. You send a model_identifier plus model-specific params and get back signed image URLs.
Production base URL: https://api.goodtake.ai/v1
All requests require an API key — see Authentication.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /models?type=image | List enabled models, cost, and supported params |
POST | /image/generate | Create a generation |
GET | /image/generations/{id} | Poll status and retrieve images |
GET | /image/generations/{id}/stream | Server-Sent Events stream |
GET | /image/generations | List your org's generations (paginated) |
How it works
- Submit —
POST /image/generatereturns a job with anid - Poll or stream —
GET /image/generations/{id}or open the SSE stream - Download — signed
images[].urlvalues are available oncompleted
For short-lived models you can add ?wait=true to get a synchronous response in a single request.