Skip to main content
GET
/
v1
/
model
Get model details
curl --request GET \
  --url https://api.eachlabs.ai/v1/model \
  --header 'X-API-Key: <api-key>'
{
  "title": "Nano Banana Pro Edit",
  "slug": "nano-banana-pro-edit",
  "version": "0.0.1",
  "output_type": "array",
  "request_schema": {
    "type": "object",
    "required": [
      "prompt"
    ],
    "properties": {
      "prompt": {
        "type": "string",
        "minLength": 10,
        "maxLength": 500
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.eachlabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key for authentication

Query Parameters

slug
string
required

Model slug identifier

Response

Model details retrieved successfully

title
string
Example:

"Nano Banana Pro Edit"

slug
string
Example:

"nano-banana-pro-edit"

version
string
deprecated

Deprecated. Always returns "0.0.1". Will be removed in a future version.

Example:

"0.0.1"

output_type
string
Example:

"array"

request_schema
object

JSON Schema for API requests to this model. Defines the structure, types, and validation rules for making requests.

Example:
{
"type": "object",
"required": ["prompt"],
"properties": {
"prompt": {
"type": "string",
"minLength": 10,
"maxLength": 500
}
}
}
Last modified on May 28, 2026