GET
/
v1
/
products
/
manufacturers
curl --request GET \
  --url https://public.api.collectpure.com/v1/products/manufacturers \
  --header 'x-api-key: <api-key>'
[
  {
    "id": 123,
    "title": "<string>",
    "isEsg": true
  }
]

Retrieve a list of all product manufacturers available in the Pure marketplace. This endpoint returns the ID, title, and ESG compliance status for each manufacturer.

Response Example

[
  {
    "id": 1,
    "title": "United States Mint",
    "isEsg": false
  },
  {
    "id": 2,
    "title": "Royal Canadian Mint",
    "isEsg": true
  },
  {
    "id": 3,
    "title": "Perth Mint",
    "isEsg": true
  },
  {
    "id": 4,
    "title": "PAMP Suisse",
    "isEsg": true
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200
application/json
Default Response
id
integer

Manufacturer ID

title
string

Manufacturer title

isEsg
boolean

Whether the manufacturer is ESG compliant