Base URL
All endpoints are relative to the following base URL.Authorization
Every request must include your API key as a Bearer token in theAuthorization header.
An API key is a secret that can access your workspace data. Keep it from being exposed.
Getting an API key
For API key issuance, pricing, and usage questions, please reach out to the Relate team at we@relate.so or via in-app chat.Pagination
All “list” API methods support offset-based pagination through thefirst and after parameters. For example, to get 30 items after the 20th, include ?first=30&after=20 in the request. If omitted, first defaults to 25 and after to 0.
List response format:
"data" are sorted by updated_at timestamp (unless otherwise noted), with the most recently updated resources appearing first.
Filtering updated resources
All “list” API methods also support filtering resources updated since a given timestamp. Include?updated_after={unix timestamp} in the request.