Skip to main content
GET
List your event stream - newest first, cursor-paged

Authorizations

Authorization
string
header
required

Your API key, e.g. Authorization: Bearer clmt_test_. Live keys use the clmt_live_ prefix.

Query Parameters

type

Filter by event type. A bare value is an exact match (type=company.status.changed). Operators go in brackets (type[in]=company.created,company.incorporated).

company_id

Filter to the events of one company. A bare value is an exact match (company_id=cmp_...). Operators go in brackets (company_id[in]=cmp_a,cmp_b).

Pattern: ^cmp_[0-9A-Za-z]{22}$
created_at

Filter by creation time (RFC 3339). A bare value is an exact match. Range operators go in brackets: created_at[gte]=2026-09-01T00:00:00Z, created_at[lt]=.... Combine a gte lower bound with cursor paging to sweep the stream from a known point - see the webhooks guide on reconciling by polling.

sort
string

Comma-separated fields to sort by, a minus prefix for descending (for example -created_at). Each endpoint's sortable fields are in its description; an unsupported one is rejected with a suggestion.

Example:

"-created_at,name"

limit
integer
default:25
Required range: 1 <= x <= 100
after
string

Use the page's end_cursor as the after value to fetch the next page. Cursors are opaque and only valid for the listing that minted them.

before
string

Use the page's start_cursor as the before value to fetch the previous page. Cannot be combined with after.

Response

One page of events, newest first by default.

object
enum<string>
required

Entity name.

Available options:
list
page
object
required

Cursor-pagination block carried by every list response.

items
object[]
required