Skip to main content
The Replyify API allows you to programmatically access your reply data, manage contacts, and integrate Replyify with your existing tools.

Base URL

All API requests should be made to:

Authentication

The Replyify API uses Bearer token authentication. Include your API key in the Authorization header:
Keep your API keys secure. Never expose them in client-side code or public repositories.

Getting an API Key

  1. Go to Settings → API Keys in your dashboard
  2. Click Create API Key
  3. Give your key a descriptive name
  4. Copy the generated key (shown only once)
API keys are scoped to your workspace. All requests made with a key access data from that workspace only.

Response Format

All responses are returned as JSON:
Error responses include an error message:

HTTP Status Codes

Rate Limits

API requests are rate limited to ensure fair usage: Rate limit headers are included in all responses:

Pagination

List endpoints support pagination with limit and offset parameters:
Paginated responses include metadata:

Available Endpoints

Replies

  • GET /api/replies - List all replies
  • GET /api/replies/:id - Get a specific reply
  • PATCH /api/replies/:id - Update a reply
  • POST /api/replies/:id/send - Send a reply
  • POST /api/replies/:id/forward - Forward a reply

Contacts

  • GET /api/contacts - List all contacts
  • GET /api/contacts/:id - Get a specific contact

Webhooks

Configure outgoing webhooks in Settings → Webhooks to receive real-time events.

Example Request

cURL
JavaScript
Python

Need Help?