Integrate ARC AI's crypto intelligence directly into your bots, dashboards, and applications. Available on every plan — Free gets 10 req/day, Pro 200, Elite 1,000.
All requests require your API key as a Bearer token. Keys are generated at Dashboard → API Access.
curl -X GET "https://arcai.io/api/v1/analyze?ticker=SOL" \ -H "Authorization: Bearer arcai_YOUR_KEY" \ -H "Content-Type: application/json"
Pass your API key in the Authorization header on every request. All endpoints are HTTPS only.
Authorization: Bearer arcai_YOUR_KEY
Keep your key secret
Never commit API keys to public repositories or expose them in client-side code. Generate a new key immediately if one is compromised.
API access is available on all plans. Your daily request limit depends on your plan.
Rate limit headers on every response: X-RateLimit-Remaining and X-RateLimit-Reset. Upgrade your plan for higher limits.
Base URL: https://arcai.io/api/v1
Run a full AI intelligence report on any token by contract address or ticker symbol. Returns scam probability, overall score, builder trust, momentum, hype, and full narrative.
Parameters
addressstringoptionalContract address (Solana or EVM)tickerstringoptionalToken ticker symbol (e.g. SOL, BTC)chainstringoptionalChain: solana, ethereum, base (default: solana)Request
curl -X GET "https://arcai.io/api/v1/analyze?ticker=SOL&chain=solana" \ -H "Authorization: Bearer arcai_YOUR_KEY"
Response
{
"data": {
"slug": "solana-sol-analysis-2026",
"tokenName": "Solana",
"ticker": "SOL",
"overallScore": 84,
"scamProbability": 3,
"hypeScore": 71,
"builderTrust": 92,
"momentumScore": 78,
"smartMoneyScore": 81,
"summary": "Solana is a high-throughput Layer 1...",
"createdAt": "2026-05-22T10:00:00Z"
}
}401UnauthorizedMissing or invalid API key403ForbiddenAPI key is valid but your request exceeded your plan quota429Too Many RequestsRate limit exceeded — check X-RateLimit-Reset header422UnprocessableInvalid parameters — check the error.message field500Server ErrorInternal error — retry after a short delayAPI access is included on every plan. Generate your first key for free — no credit card required. Upgrade anytime for higher limits.