List the listings in your API scope (cursor-paginated).
GET /v1/listings
Returns a cursor-paginated page of the listings the authenticated key may read (owner or writer access). Ordered by an immutable (created_at, id) tuple. Pass nextCursor back as cursor to page forward. Page size defaults to 50 and is clamped to [1, 100].
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Page size. Defaults to 50; values are clamped to the range [1, 100].
An opaque pagination token from a prior page’s nextCursor. Treat as a black box.
Responses
Section titled “ Responses ”A page of listings.
A cursor-paginated page of listings.
object
The public projection of a listing. A curated, additive-only subset of internal fields.
object
The listing’s unique id.
The listing’s public slug.
IANA timezone identifier.
When the listing was created (ISO-8601, UTC). The cursor ordering key.
Opaque token for the next page, or null on the last page.
The request was malformed — an invalid cursor (INVALID_CURSOR) or a failed parameter validation (VALIDATION_ERROR, with field-level errors[]).
The single error envelope for every public-surface error response.
object
A stable, enumerated error code. Branch on this, never on message.
A human-readable description. May change without a contract break.
A per-response id for support correlation.
Present only for VALIDATION_ERROR — the field-level validation failures.
One field-level validation failure.
object
The rejected field or query parameter name.
What was wrong with it.
The API key is missing, malformed, revoked, or expired (UNAUTHENTICATED).
The single error envelope for every public-surface error response.
object
A stable, enumerated error code. Branch on this, never on message.
A human-readable description. May change without a contract break.
A per-response id for support correlation.
Present only for VALIDATION_ERROR — the field-level validation failures.
One field-level validation failure.
object
The rejected field or query parameter name.
What was wrong with it.
The per-key rate limit was exceeded (RATE_LIMITED). Retry after the interval in Retry-After.
The single error envelope for every public-surface error response.
object
A stable, enumerated error code. Branch on this, never on message.
A human-readable description. May change without a contract break.
A per-response id for support correlation.
Present only for VALIDATION_ERROR — the field-level validation failures.
One field-level validation failure.
object
The rejected field or query parameter name.
What was wrong with it.
Headers
Section titled “Headers ”Integer seconds to wait before retrying (RFC 7231 delta-seconds form, always >= 1).