Back to ARC AI
REST APIAll Plans

ARC AI Developer API

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.

Quick start

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"

Authentication

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.

Rate limits

API access is available on all plans. Your daily request limit depends on your plan.

PlanReq / dayReq / minAnalyze endpoint
Free10101 req
Pro2003010 req
Elite1,0006010 req
10×
Analyze endpoint cost
Each /analyze call counts as 10 requests due to AI compute cost
All other endpoints
Feed, projects, and report fetch endpoints count as 1 request each

Rate limit headers on every response: X-RateLimit-Remaining and X-RateLimit-Reset. Upgrade your plan for higher limits.

Endpoints

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"
  }
}

Error codes

401UnauthorizedMissing or invalid API key
403ForbiddenAPI key is valid but your request exceeded your plan quota
429Too Many RequestsRate limit exceeded — check X-RateLimit-Reset header
422UnprocessableInvalid parameters — check the error.message field
500Server ErrorInternal error — retry after a short delay

Ready to build?

API access is included on every plan. Generate your first key for free — no credit card required. Upgrade anytime for higher limits.