REST API • v1 • JSON

Build with
Remindax API

Automate expiry tracking, reminders, contacts, tasks, and document management directly from your application. One REST API, full coverage.

12 Resource Groups Bearer Auth HTTPS Only JSON Responses
Quick Start
# 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 ↓

Quickstart

Get your first API call working in under 5 minutes.

1

Get your credentials

Log in to app.remindax.com/settings. Under the API tab, copy your client_id and client_secret.

2

Obtain an access token

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.

3

Make your first request

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.

SDKs & Tools

Official and community resources to speed up your integration.

📦

Postman Collection

Import the Remindax OpenAPI spec directly into Postman for instant interactive testing — no code required.

Download OpenAPI YAML
📋

OpenAPI 3.0 Spec

Generate client SDKs in any language using openapi-generator or any compatible tool.

View Raw Spec

Help Center

Detailed guides, FAQs, and workflow articles covering the Remindax platform and integrations.

Visit Help Center

Changelog

A record of notable API changes, newest first.