Skip to main content
GET
/
models
List Models
curl --request GET \
  --url https://api.woodwide.ai/models \
  --header 'Authorization: Bearer <token>'
{
  "models": [
    {
      "model_id": "b2c3d4e5-0000-0000-0000-000000000001",
      "name": "churn_predictor",
      "model_type": "prediction",
      "status": "ready",
      "current_metrics": {
        "accuracy": 0.92
      },
      "current_version": {
        "version_id": "b2c3d4e5-0000-0000-0000-000000000002",
        "version": 1,
        "status": "ready",
        "metrics": {
          "accuracy": 0.92
        }
      },
      "created_at": "2025-01-15T11:00:00Z",
      "updated_at": "2025-01-15T11:05:00Z"
    }
  ],
  "next_cursor": null
}

Documentation Index

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

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

This endpoint uses cursor-based pagination ordered newest-first. See Pagination for a full example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

q
string | null

Case-insensitive substring search on model name. Returns models whose name contains the query string.

limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string | null

Pagination cursor

Response

Successful Response

Response for listing models.

Returns models in the current organization. Each model's status field reflects the latest version: ready, processing, or failed.

items
Model · object[]
required
next_cursor
string | null