Loading...

Developer Hub

API Credentials

Securely manage access to the Xerpihan Intelligence Engine. Our API allows you to programmatically trigger market audits and retrieve localization ROI data.

Your secret keys provide full access to your workspace intelligence. Never commit these to public repositories. We recommend using a secrets manager for production deployments.

Live API Keys

0 Active Credentials

Loading Credentials...

Max 10 keys per workspace on Pro plan.

View API Status

Rapid Implementation

Get started in minutes. Our SDKs and comprehensive documentation cover all major frameworks and languages.

Read Documentation

Available SDKs

No
Node.js
v2.4.0
Py
Python
v1.1.2
Go
Go
v0.8.0

Rate Limits

Intelligence Audits85/100
Requests / Min1,000

Quick Start Guide

Learn how to authenticate and make your first request to the Xerpihan API.

1

Authentication

All requests must be authenticated using the Bearer token scheme in the Authorization header.

# Request Example
curl -X GET https://api.xerpihan.com/v1/market/audit \
-H "Authorization: Bearer YOUR_SECRET_KEY"
2

Handling Response

The API returns standard JSON responses with semantic status codes and detailed error messages if applicable.

// Response Example
{
"status": "success",
"data": {
"audit_id": "aud_82k9l1",
"score": 92.5
}
}