Goodtake AI

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

MethodPathDescription
GET/models?type=imageList enabled models, cost, and supported params
POST/image/generateCreate a generation
GET/image/generations/{id}Poll status and retrieve images
GET/image/generations/{id}/streamServer-Sent Events stream
GET/image/generationsList your org's generations (paginated)

How it works

  1. SubmitPOST /image/generate returns a job with an id
  2. Poll or streamGET /image/generations/{id} or open the SSE stream
  3. Download — signed images[].url values are available on completed

For short-lived models you can add ?wait=true to get a synchronous response in a single request.

Explore

On this page