GetPaidly API
Business PlanAccess your business data programmatically. Read-only REST API for transactions, contacts, and business summaries.
Quick Start
Get up and running in 3 steps.
Get your API key
Send "api key" to GetPaidly on WhatsApp. You'll receive your unique API key instantly.
Make your first request
Try fetching your business summary:
curl -H "x-api-key: YOUR_API_KEY" \
https://getpaidly-development.up.railway.app/v1/summaryExplore endpoints
Browse the full endpoint reference below to access transactions, contacts, and more.
Authentication
All API requests require an x-api-key header.
cURL
curl -H "x-api-key: YOUR_API_KEY" \
https://getpaidly-development.up.railway.app/v1/summaryJavaScript (fetch)
const res = await fetch("https://getpaidly-development.up.railway.app/v1/summary", {
headers: { "x-api-key": "YOUR_API_KEY" }
});
const data = await res.json();
console.log(data);Python (requests)
import requests
res = requests.get(
"https://getpaidly-development.up.railway.app/v1/summary",
headers={"x-api-key": "YOUR_API_KEY"}
)
print(res.json())Endpoints
All endpoints are read-only (GET). Base URL: https://getpaidly-development.up.railway.app
Try It Live
Paste your API key and send a real request. Responses come directly from the GetPaidly API.
Rate Limits
If you exceed the limit, you will receive a 429 status code. Wait 60 seconds before retrying.
Error Codes
Standard HTTP status codes are used to indicate success or failure.
| Status | Meaning | Description |
|---|---|---|
| 401 | Unauthorized | Invalid or missing API key. |
| 403 | Forbidden | Your plan does not include API access. Upgrade to Business. |
| 404 | Not Found | The requested resource does not exist. |
| 429 | Too Many Requests | Rate limit exceeded. Wait and retry. |
Need a Custom API?
We're actively building new endpoints based on what our customers need. If you need write access, webhooks, bulk operations, or any integration that would help your business - we'd love to hear from you.
Need help? Message us on WhatsApp
← Back to GetPaidly