Skip to content
Docs

Documentation

Models

List available Raywake AI models and read their input schemas. Explore model IDs, categories and the parameters required to generate media.

List models

GET/v1/models

Models ready to use, in catalog order. Requires models:read.

Query parameters
NameTypeDescription
searchstring
Match name, description or model id.
categorystring
A task such as text-to-image; see GET /v1/models/categories.
groupedboolean
Return one entry per product with its modes (for example text-to-image and edit) instead of one per model id.

Default: false

limitinteger
Page size, up to 500.

Default: 100

offsetinteger
Items to skip.

Default: 0

curl -s https://api.raywake.com/v1/models?category=text-to-image&limit=20 \
  -H "Authorization: Bearer $RAYWAKE_API_KEY"

Get a model

GET/v1/models/{model}

The model's details and its input schema under openapi (an OpenAPI document with one request body). Model ids contain slashes; use them as-is in the path.

curl -s https://api.raywake.com/v1/models/nano-banana-pro \
  -H "Authorization: Bearer $RAYWAKE_API_KEY"

Categories

GET/v1/models/categories

The task categories present in the catalog.