Introduction
Paced Email offers several ways to integrate with our product, including a REST API and WebHooks.
Server-side REST API
The Paced Email API adheres to REST conventions. Our API communicates in JSON format and uses OAuth access tokens to authenticate requests.
The current server-side API is available at:
https://www.paced.email/api/v1
Rate limiting
There is a limit of 10 requests per minute on all endpoints. If you exceed the limit, a 429 Too Many Requests
response code will be returned with informative RateLimit-*
headers included in the payload. E.g.
curl -I -H "Authorization: Bearer pt_secret_xxxxx" https://www.paced.email/api/v1/me HTTP/1.1 429 Too Many Requests RateLimit-Limit: 10 RateLimit-Remaining: 0 RateLimit-Reset: 1664009880
Webhooks
Webhooks allow you to listen for changes in a Paced Email account and get notified via HTTP POST requests. Learn more about webhooks →