API Overview

Last updated: February 19, 2026

API Overview

nakwasap provides a REST API for integration with external systems.

Base URL

https://nakwasap.my/api/v1

Authentication

All API requests require an API key in the header:

X-API-Key: your-api-key

Get your API key at Settings > Developers.

Response Format

All responses are in JSON format:

{
  "success": true,
  "data": { ... }
}

Error response:

{
  "error": "Error message"
}

Rate Limiting

The API has rate limits to prevent abuse. Response headers will show your remaining quota:

  • X-RateLimit-Limit — Maximum limit
  • X-RateLimit-Remaining — Remaining requests
  • X-RateLimit-Reset — Reset time (Unix timestamp)