Skip to main content
GET
/
v1
/
catalogs
/
{catalog}
Download a catalog
curl --request GET \
  --url https://api.gemrate.com/v1/catalogs/{catalog} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "catalog": "psa",
    "download_url": "<string>",
    "latest_entry": "2026-06-01",
    "expires_in": 300
  },
  "meta": {
    "request_id": "req_abc123",
    "pagination": {
      "page": 1,
      "page_size": 100,
      "total": 1340,
      "total_pages": 14,
      "next_page": 2
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

catalog
enum<string>
required

The catalog slug (see /v1/catalogs).

Available options:
psa,
pokemon

Response

A presigned download URL.

data
object
meta
object

Metadata attached to every response.