List Image Models
Endpoint Examples
List Image Models
List image models for NanoGPT’s dedicated Image API
GET
List Image Models
Overview
UseGET /api/v1/images/models to discover image models for the dedicated Image API. The response includes model IDs, capabilities, supported parameters, streaming support, and a model-specific endpoint metadata URL.
Model availability and supported parameters can change. Build clients from the returned metadata instead of hardcoding model capability tables.
Authentication
Authentication is optional.Authorization: Bearer YOUR_API_KEYx-api-key: YOUR_API_KEY
Response
Fields
| Field | Type | Description |
|---|---|---|
id | string | Model ID to use in POST /api/v1/images. |
name | string | Human-readable model name. |
description | string | Model description. |
created | integer | Unix timestamp for when the model was added. |
owned_by | string | Public owner or provider label. |
architecture.input_modalities | string[] | Supported input modalities, such as text or image. |
architecture.output_modalities | string[] | Supported output modalities. |
supported_parameters | object | Machine-readable model-specific parameter metadata. |
supports_streaming | boolean | Currently always false. |
endpoints | string | URL for endpoint metadata and pricing for this model. |
capabilities | object | Feature flags such as image_generation, image_to_image, inpainting, and nsfw. |
category | string | Usually image. |
Example
Notes
supported_parametersvaries by model.- Model IDs may contain slashes. Prefer the returned
endpointsURL when fetching endpoint metadata. - Use this endpoint with Get Image Model Endpoints before sending generation requests.