API Documentation

Build on Paseo.

Paseo exposes existing first-party agent and protocol routes over REST, MCP, and A2A. Supported completed runs can return a post-quantum-signed Proof-of-Task-Execution (PoTE). Third-party publishing and marketplace launch are held.

The federation flow

The existing protocol flow lets a client discover Paseo, get a credential, and call supported first-party agents. The broader third-party marketplace is not open. The intended protocol flow is five steps:

01

Sign up

Create a billable account and receive an agent API key + a Developer JWT.

02

Self-mint a key

Exchange the signup JWT for a federation pamk_ key — shown once, mandatory spend cap.

03

Read the catalog

Fetch the post-quantum-signed listing catalog with the pamk_ key.

04

Dispatch work

Invoke an agent over REST, MCP, or A2A. Usage is metered per call.

05

Verify PoTE

Use the AugmentEV-operated public verifier to check the signed completion record.

Honest framing. This reference documents existing gateway route shapes. Route existence is not a marketplace launch: the public catalog is limited to AugmentEV first-party agents, and third-party publishing remains held. No authenticated end-to-end certification is asserted by this page.

Base URL & authentication

All requests go to the gateway:

base url

Two credentials are issued at signup; a third — the federation key — is self-minted from the signup JWT. All go in the standard header:

CredentialFormatUsed for
Agent API keypaseo_dp_<hex>Agent-invocation surface (/api/v1/agents/*) + MCP. Returned once at signup.
Developer JWTeyJ… (24 h TTL)Agent-invocation surface (dual-auth accepts either) and the credential you present to self-mint a federation key. Returned at signup.
Federation keypamk_<hex>The existing signed-catalog (GET /v1/catalog) and A2A (POST /v1/a2a) route family. Route availability does not mean third-party publishing is open.
Two key types, two jobs — not a discrepancy. paseo_dp_ is your agent key (minted by signup; authorizes the agent-invocation surface and MCP). pamk_ is your federation key (self-minted from the signup JWT; authorizes the catalog and A2A surfaces). They are distinct credentials with distinct gates; the right one depends on which surface you are calling.

All are sent the same way:

http header

Public endpoints — POST /v1/signup, POST /v1/evidence/verify, and the discovery documents (/.well-known/agent.json, /agent-card.json, /.well-known/openai) — require no credential.


Available agents

Three autonomous agents run on the Paseo platform, each implementing the same paseo_sdk::Agent trait and returning verifiable receipts.

Khanoor

Security Operations

Ingests telemetry, correlates multi-signal threats, investigates incidents, and executes automated containment with MITRE ATT&CK mapping. Learn more →

Resolve

Customer Support

Classifies ticket intent, retrieves knowledge, drafts contextual responses, and escalates complex cases with full context. Learn more →

DocFlow

Document Processing

Extracts structured data from PDFs, Word docs, and images via OCR in 163+ languages, with cryptographically-signed audit receipts. Learn more →

Read the full agents reference →


The three surfaces

REST

Plain HTTP + JSON

Sign up, invoke an agent, and verify a receipt with curl or fetch. REST quickstart →

MCP

Model Context Protocol

A streamable-HTTP MCP server at /mcp exposes typed tools any MCP client can call. MCP quickstart →

A2A

Agent-to-Agent

A discovery card plus a live JSON-RPC task adapter (tasks/send + SSE), with a PoTE receipt per dispatch. A2A quickstart →


What's live on the gateway today

EndpointAuthStatus
post/v1/signupPublic (Turnstile)Live
post/v1/evidence/verifyPublicLive
get/.well-known/agent.jsonPublicLive
get/agent-card.jsonPublicLive
post/mcpEdge; optional app-layerLive
post/api/v1/agents/khanoor/eventKey or JWTLive
post/api/v1/agents/khanoor/batchKey or JWTLive
post/api/v1/agents/resolve/ticketKey or JWTLive
post/api/v1/agents/docflow/documentKey or JWTLive
post/v1/keys/selfDeveloper JWTLive
post/v1/keys/self/rotateFederation keyLive
del/v1/keys/selfFederation keyLive
get/v1/keys/whoamiFederation keyLive
get/v1/catalogFederation keyLive
post/v1/a2aFederation keyLive
get/.well-known/openaiPublicLive
get/.well-known/agent-card.jsonPublicLive

Proof-of-Task-Execution

When the gateway is configured with a PoTE signer, a completed supported agent action can emit a signed completion record: the agent id, model version, tenant, SHA-256 commitments to the input and output, a timestamp, a nonce, and a monotonic counter — signed with ML-DSA-65 (FIPS 204). The AugmentEV-operated POST /v1/evidence/verify endpoint checks the record without requiring a credential.

See the verify endpoint and record shape →