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
cursor
Pagination cursor. Pass the next_cursor returned by the previous page to fetch the vendors that follow it. Omit on the first request.
limit
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
data
object
has_more
True when more vendors remain beyond this page. Keep paging while this is true.
next_cursor
Cursor to pass as ?cursor= to fetch the next page. Null on the last page.
Errors
422
Unprocessable Entity Error