Skip to main content
GET
/
catalog
List proxy offers
curl --request GET \
  --url https://api.proxyjam.com/public/v1/catalog \
  --header 'X-API-Key: <api-key>'
{
  "kinds": [
    {
      "kind": "<string>",
      "offers": [
        {
          "id": 123,
          "kind": "<string>",
          "mode": "<string>",
          "ip_version": "<string>",
          "name": "<string>",
          "description": "<string>",
          "country_code": "<string>",
          "is_available": true,
          "price_from_usd": 123,
          "currency": "<string>",
          "options": [
            {}
          ]
        }
      ]
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the full proxy catalog grouped by kind. Use query parameters to filter the results.

Query parameters

kind
string
Filter by proxy type. One of: datacenter, residential, mobile.
country
string
Filter by ISO 3166-1 alpha-2 country code (e.g., US, GB, DE).
is_available
boolean
When true, returns only offers currently in stock.

Response

kinds
array
List of offer groups, one per proxy kind.
total
integer
Total number of offers across all kinds.

Example

curl "https://api.proxyjam.com/public/v1/catalog?kind=residential&country=US&is_available=true"