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
}| Field | Description |
|---|---|
callCount | Number of successful settled payments to this endpoint |
revenueUsdcRaw | Lifetime revenue in raw USDC units. "71600000" = 71.60 USDC |
active | false after DELETE (soft delete; payments stop firing webhooks but historical data is preserved) |
Errors
| Status | Cause |
|---|---|
| 401 | Missing or invalid Authorization |
| 403 | API key lacks payments:accept scope |