API Access

Integrate TaxMitra AI into your own systems

Your API Key

Active
tm_live_โ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขโ€ขxxxx

โš ๏ธ Rotating will invalidate your current key

247

Calls This Month

10,000

Monthly Limit

2.3s

Avg Response Time

API Endpoints

POST/api/v1/analyseโ€” Analyse a tax document

Request body

{ "text": string, "documentType"?: string, "language"?: string, "country"?: string }

Response

{ "result": { "summary", "key_figures", "tax_implications", "action_items", "confidence" } }
GET/api/v1/analysesโ€” List your analyses

Request body

โ€”

Response

{ "analyses": [...] }
POST/api/v1/chatโ€” Chat with TaxMitra AI

Request body

{ "message": string, "language"?: string, "country"?: string }

Response

{ "reply": string }

Code Examples

const response = await fetch('https://arkaai.io/api/v1/analyse', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'x-api-key': 'YOUR_API_KEY'
  },
  body: JSON.stringify({
    text: 'Document content here...',
    documentType: 'Form 16',
    language: 'English',
    country: 'India'
  })
});

const { result } = await response.json();
console.log(result.summary);