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

Retrieve a list of all certificate providers available in the Pure marketplace. This endpoint returns the ID, title, and code for each certificate provider.

Response Example

[
  {
    "id": 2,
    "title": "NGC",
    "code": "NGC"
  },
  {
    "id": 1,
    "title": "PCGS",
    "code": "PCGS"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200
application/json
Default Response
id
integer

Certificate provider ID

title
string

Certificate provider title

code
string

Certificate provider code