List vendors

List execution vendors and the models they currently serve. Paginated the same way as /models: a page holds at most 500 vendors, and next_cursor walks the rest.

Authentication

AuthorizationBearer
Your production key sent as a bearer token.

Query parameters

cursorstringOptional

Pagination cursor. Pass the next_cursor returned by the previous page to fetch the vendors that follow it. Omit on the first request.

limitintegerOptional1-500Defaults to 50

Vendors per page. Defaults to 50, minimum 1, maximum 500. A limit above 500 is rejected with 422; page through the rest with next_cursor rather than raising it.

Response

Successful Response
datalist of objects
object"list"OptionalDefaults to list
has_morebooleanOptionalDefaults to false
True when more vendors remain beyond this page. Keep paging while this is true.
next_cursorstring or nullOptional

Cursor to pass as ?cursor= to fetch the next page. Null on the last page.

Errors

422
Unprocessable Entity Error