LOOMAL
SDK / API ReferenceSellers

List Endpoints

List registered paid endpoints

Scope: payments:accept

Returns all paid endpoints registered to this Identity, newest first.

Admin endpoint — currently only available via REST or the Console UI.

Request

curl https://api.loomal.ai/v0/sellers/endpoints \
  -H "Authorization: Bearer loid-your-api-key"

Response — 200 OK

{
  "endpoints": [
    {
      "endpointId": "se_abc123",
      "urlPattern": "https://your-api.com/search",
      "priceUsdc": "0.05",
      "network": "base",
      "webhookUrl": "https://your-api.com/webhooks/payment",
      "active": true,
      "callCount": 1432,
      "revenueUsdcRaw": "71600000",
      "createdAt": "2026-04-28T12:00:00Z"
    }
  ],
  "count": 1
}
FieldDescription
callCountNumber of successful settled payments to this endpoint
revenueUsdcRawLifetime revenue in raw USDC units. "71600000" = 71.60 USDC
activefalse after DELETE (soft delete; payments stop firing webhooks but historical data is preserved)

Errors

StatusCause
401Missing or invalid Authorization
403API key lacks payments:accept scope

On this page