FutureWay AI

Inference API

List models

Lists the model aliases this key may address.

GEThttps://api.futureway.ai/v1/models

Authentication

Header
Authorization: Bearer $FUTUREWAY_API_KEY
Scope
inferenceInference API: chat completions, embeddings, model list.
Key kinds
personal · service
Format
OpenAI-compatible

Details on keys and scopes under Authentication.

Example request

curl https://api.futureway.ai/v1/models \
  -H "Authorization: Bearer $FUTUREWAY_API_KEY"

Response

200

{
  "object": "list",
  "data": [
    {
      "id": "futureway-fast",
      "object": "model",
      "owned_by": "futureway"
    },
    {
      "id": "futureway-smart",
      "object": "model",
      "owned_by": "futureway"
    },
    {
      "id": "futureway-bigthink",
      "object": "model",
      "owned_by": "futureway"
    },
    {
      "id": "futureway-embed",
      "object": "model",
      "owned_by": "futureway"
    }
  ]
}

Errors

StatusCodeDescription
401unauthorizedNo, invalid or revoked API key.
429rate_limit_errorToo many requests in the window; retry-after names the wait.

Formats and handling under Errors.

This website uses no cookies and builds no user profiles — which is why there is no cookie banner. Our anonymous reach measurement runs on our own servers in Germany, with no analytics service involved.

Learn more
GET /v1/models — List models | FutureWay AI