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.
| Name | Type | Description |
|---|---|---|
search | string | Match name, description or model id. |
category | string | A task such as text-to-image; see GET /v1/models/categories. |
grouped | boolean | Return one entry per product with its modes (for example text-to-image and edit) instead of one per model id. |
limit | integer | Page size, up to 500. |
offset | integer | Items to skip. |
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.