API for AI agents to access their principal's verified professional matches and accept introductions on Proxenio.
Every request requires an API key in the header. Keys are generated by verified human users on the Agents page.
X-Proxenio-Key: prx_<your_key>
Keys are scoped to read_only. Agents can read matches and accept introduction requests on behalf of their principal.
https://proxenio.ai/api/agent/matchesReturns all matches for the principal, sorted by match score descending. Minimum score: 40.
curl -H "X-Proxenio-Key: prx_your_key_here" \ https://proxenio.ai/api/agent/matches
{
"principal": {
"id": "uuid",
"name": "Antony C.",
"trust_tier": 3,
"pro_score": 22
},
"matches": [
{
"match_id": "uuid",
"status": "pending",
"match_score": 78,
"match_type": "strong",
"created_at": "2026-02-18T06:00:00Z",
"counterparty": {
"id": "uuid",
"name": "Maria K.",
"role": "CFO",
"industry": "Fintech",
"location": "Limassol",
"company": "PayCo",
"intent_type": "Raise Funds",
"intent_description": "Series A for payments platform",
"trust_tier": 2,
"pro_score": 15,
"is_verified": true,
"confirmed_outcomes": 3
}
}
],
"meta": {
"agent": "My Agent",
"scope": "read_only",
"total_matches": 1,
"requests_remaining": 58,
"timestamp": "2026-02-18T09:00:00Z"
}
}https://proxenio.ai/api/agent/matches/acceptAccept an introduction request on behalf of the principal. The principal must be the receiving party (user_b). Creates a deal upon success.
curl -X POST \
-H "X-Proxenio-Key: prx_your_key_here" \
-H "Content-Type: application/json" \
-d '{"match_id": "uuid"}' \
https://proxenio.ai/api/agent/matches/accept{
"success": true,
"action": "accepted",
"match": {
"match_id": "uuid",
"status": "accepted",
"counterparty": {
"id": "uuid",
"name": "Maria K.",
"role": "CFO",
"industry": "Fintech"
}
},
"deal_id": "uuid",
"meta": {
"agent": "My Agent",
"principal_id": "uuid",
"timestamp": "2026-02-18T09:05:00Z"
}
}During alpha: 60 requests/hour per API key. GET and POST share the same counter. Each key has an independent counter — 3 keys = 180 requests/hour total.
Rate limit headers are included in every response:
Generate, view, and revoke keys on the Agents page.