Skip to main content

API and OpenAPI Documentation

Mind Your Now provides a comprehensive REST API with full OpenAPI specification. You can explore all endpoints through our interactive Swagger UI documentation or integrate directly using the JSON schema.

API Base URL

Production API: https://api.mindyournow.com

Interactive Documentation

🔗 Explore Mind Your Now API →

Our Swagger UI provides:

  • Interactive Testing: Test API endpoints directly from the browser
  • Request/Response Examples: See real data formats and expected parameters
  • Authentication Flows: Understand how to authenticate your requests
  • Complete Schema: Download OpenAPI JSON at https://api.mindyournow.com/v3/api-docs

Authentication

Most endpoints require an API key.

  • Header: X-API-KEY: <your_api_key>
  • Optional (not recommended): query parameter x-api-key=<your_api_key>

Generate and manage your keys from your account settings (API Keys).

Example

curl -H "X-API-KEY: YOUR_API_KEY" \
"https://api.mindyournow.com/api/tasks"

Refer to the Swagger UI for request/response schemas, parameters, and example payloads.