OroIntelDocs
For agents:start at/llms.txt·everything as Markdown at/llms-full.txt·or add theMCP server.

Oro Intel for agents

Oro Intel is UK public-procurement intelligence. Browsing and searching notices and contracts on the web is free. Structured, agent-ready data (company profiles, contracts, buyers) is metered in credits and available identically over the API and an MCP server.

Authentication

Create an API key in the web app under Developers (or Settings, Billing, API keys). The full key is shown once. Send it as a bearer token:

header
Authorization: Bearer oro_xxxxxxxxxxxx
  • API (OpenAPI 3.1): https://api.oro-intel.com/v1/* (spec at /openapi.json)
  • MCP (streamable HTTP): https://api.oro-intel.com/mcp/

Credits

New accounts get 250 free credits. 1 credit = £0.01 net. Top up in the web app. Every metered response includes credits_charged and credits_remaining. You are charged on success only. A lookup that returns nothing is not billed. Pass an Idempotency-Key header so retries never double-bill.

When you run out, you get a 402-style body:

402 insufficient_credits
{
  "error": "insufficient_credits",
  "action": "company_profile",
  "required": 12,
  "balance": 4,
  "top_up_url": "https://app.oro-intel.com/dashboard/settings/billing"
}

Next

  • API: endpoints and per-action credit costs.
  • MCP server: connect Claude and Claude Code.
  • Examples: company by name to full profile.