API Reference
Catalog
Browse the Varen API catalog of pre-configured APIs.
List catalog APIs
GET /api/v1/catalogReturns all APIs available in the Varen catalog. This endpoint does not require authentication.
Query parameters
| Parameter | Type | Description |
|---|---|---|
category | string | Filter by category (e.g., payments, ai, cloud, auth, communication) |
search | string | Search by API name |
page | integer | Page number (default: 1) |
per_page | integer | Results per page (default: 20, max: 100) |
Example
curl "https://api.varen.dev/v1/catalog?category=payments"Response
{
"data": [
{
"slug": "stripe",
"name": "Stripe",
"category": "payments",
"logo_url": "/logos/stripe.svg",
"docs_url": "https://docs.stripe.com/api",
"has_openapi_spec": true
},
{
"slug": "paypal",
"name": "PayPal",
"category": "payments",
"logo_url": "/logos/paypal.svg",
"docs_url": "https://developer.paypal.com/docs/api/overview",
"has_openapi_spec": false
}
],
"meta": {
"total": 8,
"page": 1,
"per_page": 20
}
}The catalog currently includes 100+ pre-configured APIs across categories like AI, database, cloud, analytics, payments, devtools, communication, and business. New APIs are added regularly.