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 documentRequest 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 analysesRequest body
โResponse
{ "analyses": [...] }POST
/api/v1/chatโ Chat with TaxMitra AIRequest 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);