ACOR
Developer platform

Developers

The same economic kernel the product runs on, over HTTP. Authenticate with an API key; every economic call passes through the mandate engine exactly as the UI does.

REST API

Versioned under /api/v1.

  • GET/api/healthPlatform and adapter health
  • GET/api/v1/network/capabilitiesLive state of every network primitive
  • GET/api/v1/agentsAgents in your organization
  • POST/api/v1/agentsCreate an agent with a mandate
  • GET/api/v1/quotesRank providers on effective cost
  • POST/api/v1/intentsCompile a signable EconomicIntent
  • POST/api/v1/intents/relaySubmit a signed intent to the relay
  • POST/api/v1/mandate/checkTest a spend against a mandate
  • GET/api/v1/clearingGross, net and projected clearing
  • GET/api/v1/receiptsImmutable economic receipts
  • GET/api/v1/reputation/:agentIdDerived reputation and its evidence

API keys

Shown once at creation, stored only as a hash.

NOT SIGNED IN

Sign in to manage API keys for your organization.

Network capabilities

Live state of every network primitive. Nothing executes against a primitive that is not verified live — UNKNOWN is treated exactly like DISABLED.

ARC.CIRCLE_NANOPAYMENT
missing CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
UNKNOWN
ARC.ERC8004
requires a deployed identity registry address
UNKNOWN
ARC.ERC8183
requires a deployed job registry address
UNKNOWN
ARC.USDC_GAS
verified by probing the configured Arc RPC
UNKNOWN
ARC.X402
requires a configured x402 facilitator
UNKNOWN
BLOCKDAG.SETTLEMENT
optional future rail; not configured
UNKNOWN
CIRCLE.CREDENTIALS
missing CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
UNKNOWN
CIRCLE.GATEWAY
missing CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
UNKNOWN
CIRCLE.NANOPAYMENTS
missing CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
UNKNOWN
CIRCLE.WALLETS
missing CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
UNKNOWN
KALEIDO.PRIVATE_CLEARING
optional enterprise integration; not configured
UNKNOWN
MULEDGER.BILATERAL_NETTING
implemented in @acor/core
AVAILABLE
MULEDGER.MULTILATERAL_NETTING
implemented; not yet used for live settlement
EXPERIMENTAL
XRPL.BATCH
amendment-gated
UNKNOWN
XRPL.CREDENTIALS
amendment-gated
UNKNOWN
XRPL.DID
amendment-gated
UNKNOWN
XRPL.ESCROW
verified by probing the configured XRPL node
UNKNOWN
XRPL.LENDING
amendment-gated
UNKNOWN
XRPL.MPT
amendment-gated
UNKNOWN
XRPL.PATHFINDING
verified by probing the configured XRPL node
UNKNOWN
XRPL.PAYMENTS
verified by probing the configured XRPL node
UNKNOWN
XRPL.PAYMENT_CHANNELS
amendment-gated
UNKNOWN
XRPL.PERMISSIONED_DEX
amendment-gated
UNKNOWN
XRPL.PERMISSION_DELEGATION
amendment-gated
UNKNOWN
XRPL.PRICE_ORACLE
amendment-gated
UNKNOWN
XRPL.RLUSD
requires a configured RLUSD issuer and trust line
UNKNOWN
XRPL.SPONSOR
amendment-gated
UNKNOWN

MCP integration

Expose your agents to MCP-aware clients.

Agent Correspondent discovers providers from internal agents, ERC-8004 identities, MCP servers, A2A endpoints and x402-priced services, and normalizes them all into one shape before procurement ranks them. A provider with no payout destination or no priced capability is dropped rather than shown.

curl -X POST https://agentcorrespondent.com/api/v1/mandate/check \
  -H "authorization: Bearer $ACOR_API_KEY" \
  -H "content-type: application/json" \
  -d '{"agentId":"agent_...","amountUsd":"0.05","asset":"USDC","network":"ARC"}'

# 200 { "decision": "ALLOW", ... }
# 200 { "decision": "DENY", "violations": [{"code":"DAILY_LIMIT_EXCEEDED", ...}] }

Service configuration

What this deployment has.

  • Postgres
    DATABASE_URL
    MISSING
  • Session signing
    AUTH_SECRET
    MISSING
  • OpenAI
    OPENAI_API_KEY
    MISSING
  • Anthropic
    ANTHROPIC_API_KEY
    MISSING
  • Arc RPC
    ARC_RPC_URL, ARC_USDC_ADDRESS
    MISSING
  • Circle
    CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
    MISSING
  • XRPL node
    XRPL_WS_URL
    MISSING

Adapters

Settlement plane health.

  • arc
    missing configuration: ARC_RPC_URL, ARC_USDC_ADDRESS
    NOT_CONFIGURED
  • circle
    missing configuration: CIRCLE_API_KEY, CIRCLE_ENTITY_SECRET
    NOT_CONFIGURED
  • xrpl
    missing configuration: XRPL_WS_URL
    NOT_CONFIGURED
  • kaleido
    missing configuration: KALEIDO_BASE_URL, KALEIDO_API_KEY
    NOT_CONFIGURED
  • blockdag
    missing configuration: BLOCKDAG_RPC_URL
    NOT_CONFIGURED