Introduction

Aivida API Documentation

Clean Next.js docs powered by Nextra.

  • Base URL: https://api.aivida.in
  • Function-calling endpoint: POST /api
  • Health endpoint: GET /health
  • Auth mode: optional (no token required, invalid token rejected with 401).
  • Header: x-stack-access-token: <access_token> (or Authorization: Bearer <access_token>).

Request Envelope

{
  "namespace": "admissions",
  "apiName": "create",
  "data": {
    "organizationId": "org_123"
  }
}

Response Envelope

{ "status": "ok", "data": {} }
{ "status": "error", "message": "error message" }