GET /series

Returns a list of all series available to your account that have AI models enabled.

Request

HTTP Method

GET

Endpoint

/api/v1/series

Parameters

Parameter Type Required Description
api_key string Yes Your API authentication key

Example Request

curl -X GET "https://knowatoa.com/api/v1/series?api_key=YOUR_API_KEY"

Response

Success Response (200 OK)

Returns a JSON object containing an array of series:

{
  "series": [
    {
      "id": "ser_xyz789",
      "name": "ChatGPT Series"
    },
    {
      "id": "ser_uvw012",
      "name": "Perplexity Series"
    }
  ]
}

Response Fields

Field Type Description
series array Array of series objects
series[].id string Unique identifier for the series (prefix_id)
series[].name string Display name of the series

Error Responses

401 Unauthorized

{
  "error": "API key is required"
}

{
  "error": "Invalid API key"
}

{
  "error": "API key is not active"
}

Notes

  • Only series with has_ai_models: true are returned
  • Series are filtered by the account's access permissions

Still need help? Contact Us Contact Us