Skip to main content
GET
Python (SDK)

Authorizations

Authorization
string
header
required

Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.

Headers

X-On-Behalf-Of
string

Optional external end-user identifier forwarded by the API gateway.

Query Parameters

limit
integer
default:20

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.

Required range: 1 <= x <= 100
order
enum<string>
default:desc

Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order.

Available options:
asc,
desc
after
string

A cursor for use in pagination. An object ID that defines your place in the list for fetching the next page.

before
string

A cursor for use in pagination. An object ID that defines your place in the list for fetching the previous page.

Response

200 - application/json

OK

A list of vector stores.

object
any
required

The object type, which is always 'list'.

data
object[]
required

Array of vector store objects.

first_id
string
required

The ID of the first object in the list.

last_id
string
required

The ID of the last object in the list.

has_more
boolean
required

Whether there are more objects available.