Skip to main content
Every resource in the API has a prefixed string ID and an object field that tells you its type.

ID format

IDs are opaque strings with a type prefix: The prefix tells you the resource type at a glance, which is helpful when debugging or reading logs.

Object types

Every response includes an object field identifying the resource type:
For lists:
This makes it safe to handle polymorphic responses — you can always check object to know what you’re looking at.

Timestamps

All timestamps are ISO 8601 strings in UTC:
Use these fields for sync, sorting, and display. See incremental sync for how to use updated_at to efficiently stay in sync.