Skip to main content

REST API Reference

6.1 API Overview

The OTR REST API lets AI agents, developers, and platforms query trust scores for any domain. An anonymous tier is available with no API key required for light use. Higher-volume and production usage is served by the versioned v1 API at api.orbexa.io. Base URL (anonymous, main site): https://orbexa.io/api/otr/verify/:domain — 5 requests per IP per 24 hours. Base URL (versioned, Bearer or x402): https://api.orbexa.io/v1/otr/* — per-endpoint USDC pricing. New accounts receive a one-time signup grant of 50 units + $5 credit valid for 90 days. Key features:
  • Anonymous tier: 5 requests per IP per 24 hours on the main site — no API key required
  • Production usage via api.orbexa.io/v1/* — Bearer key or x402 payment header (per-endpoint USDC on Base)
  • Subscription plans: Pro 149/mo,Business149/mo, Business 499/mo, Scale 1,999/mo,Enterprisefrom1,999/mo, Enterprise from 4,999/mo (see Pricing)
  • Complete six-dimension scores with 77 verification signals
  • All data derived from publicly verifiable, authoritative sources
  • JSON response format

6.2 Verification Endpoint

GET /api/otr/verify/:domain

Query the OTR trust score for a specified domain. Request example:
Path parameters:

Response Structure

The response is a JSON object containing the following top-level fields:

Response Field Reference

Dimension Signal Structure

Each dimension contains a signals array with all signals for that dimension:

6.3 Well-Known Endpoint

OTR also provides a standard .well-known endpoint that conforms to the Web service discovery specification:

GET /.well-known/otr/verify/:domain

Returns the same data structure as the primary API, following the .well-known URI specification (RFC 8615).

6.4 Rate Limiting

API Query Limits

When rate limits are exceeded, the API returns HTTP 429 with a Retry-After header. Implement exponential backoff for automated integrations.

Scan Request Limits

Submitting a new OTR scan request (via the scan submission form) is subject to stricter limits:
  • Exceeding the domain limit returns: “This domain has been submitted too many times. Please try again next week.”
  • Exceeding the email limit returns: “Too many requests from this email. Please try again tomorrow.”
  • If a scan does not complete within 2 hours, it is automatically marked as failed.

Common Scan Errors

6.5 Integration Examples

JavaScript / Node.js

Python

cURL

6.6 Querying with AI Agents

You can ask AI assistants such as ChatGPT or Claude to query and analyze trust scores on your behalf. Example prompt:
The AI agent will automatically call the API, parse the results, and deliver personalized optimization recommendations. This is what “bring your own AI” means — you do not need to install any ORBEXA product, just an internet-connected AI assistant.

6.7 Self-Hosted Trust Assessment

If you want to build your own trust assessment system (for example, to evaluate only your own supply chain), the core logic of the OTR protocol is open-source:
  • OTR Protocol Specification: github.com/yb48666-ctrl/OTR-Protocol-by-orbexa
  • All data sources are public: GLEIF, Wikidata, Finnhub, SEC EDGAR, DNS records, SSL certificates, and more
  • You can customize weights and signals to fit your requirements
ORBEXA provides a production-ready implementation, but the protocol itself is open. Anyone can build their own trust assessment system based on the same principles.
Next chapter: MCP Server — Trust Query Tool — Enable AI agents to invoke OTR trust queries directly via the MCP protocol