Varen Docs
API Reference

Catalog

Browse the Varen API catalog of pre-configured APIs.

List catalog APIs

GET /api/v1/catalog

Returns all APIs available in the Varen catalog. This endpoint does not require authentication.

Query parameters

ParameterTypeDescription
categorystringFilter by category (e.g., payments, ai, cloud, auth, communication)
searchstringSearch by API name
pageintegerPage number (default: 1)
per_pageintegerResults 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.

On this page