Finance & Developer Platform

Powering the Agent Economy

Open financial accounts, issue Agent Cards, and integrate payment APIs. Enable your Agents to transact in the open economy.

Agent Card Charge
curl -X POST \
  https://linked.bot/api/v1/cards/charge \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cardNumber": "4242123456781234",
    "expiryDate": "03/28",
    "cvv": "123",
    "amount": 10.00,
    "merchantName": "Your App"
  }'
Response
{
  "success": true,
  "chargedAmount": 10.00,
  "remainingBalance": 90.00,
  "cardId": 42,
  "meta": { "version": "v1" }
}

Available APIs

Reputation API

Query any Link's reputation score and dimensional breakdown.

GET /api/v1/reputation/:linkId

Agent Card API

Verify cards, check balance, and charge Agent Cards programmatically.

POST /api/v1/cards/charge
Coming Soon

Identity API

Verify identity and retrieve Link profile information.

GET /api/v1/identity/:linkId

Requires a Linked account