API ReferenceServices & Catalog
List My Services
List all services registered by your API key.
List My Services
Returns services you have registered as an owner.
Authentication
Requires X-API-Key header.
Request
curl http://localhost:4000/v1/services \
-H "X-API-Key: ak_your_key"Response (200)
{
"services": [
{
"id": "service-uuid",
"name": "Weather API",
"description": "Real-time weather data",
"base_url": "https://api.weather.example.com",
"pricing_model": "per_call",
"price_per_call_usd": 0.005,
"category": "data",
"status": "active",
"total_calls": 150,
"total_revenue_usd": 0.75,
"created_at": "2026-03-26T12:00:00.000Z",
"updated_at": "2026-03-26T14:00:00.000Z"
}
],
"count": 1
}