REST API • v1 • JSON
Automate expiry tracking, reminders, contacts, tasks, and document management directly from your application. One REST API, full coverage.
# 1. Get your access token
curl -X POST https://api.remindax.com/v1/oauth/token \
-H "Content-Type: application/json" \
-d '{"grant_type":"client_credentials","client_id":"YOUR_ID","client_secret":"YOUR_SECRET"}'
# 2. Call any endpoint
curl https://api.remindax.com/v1/items \
-H "Authorization: Bearer YOUR_TOKEN"
Explore full API reference ↓
Get your first API call working in under 5 minutes.
Log in to app.remindax.com/settings. Under the API tab, copy your client_id and client_secret.
POST https://api.remindax.com/v1/oauth/token
Content-Type: application/json
{
"grant_type": "client_credentials",
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET"
}
The response includes an access_token. Use it in all subsequent requests. Tokens expire — re-authenticate using the same endpoint when needed.
GET https://api.remindax.com/v1/items Authorization: Bearer YOUR_ACCESS_TOKEN Accept: application/json
A paginated list of tracked items is returned as JSON. Browse the API Reference above for contacts, reminders, folders, tasks, and the rest of the API.
Official and community resources to speed up your integration.
Import the Remindax OpenAPI spec directly into Postman for instant interactive testing — no code required.
Download OpenAPI YAMLGenerate client SDKs in any language using openapi-generator or any compatible tool.
View Raw SpecDetailed guides, FAQs, and workflow articles covering the Remindax platform and integrations.
Visit Help CenterA record of notable API changes, newest first.
/v1/oauth/token and /v1/oauth/me. GET by id added for contacts and contact groups.