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

Retrieve a list of all product attributes available in the Pure marketplace. This endpoint returns the ID, title, type, and description for each attribute.

Response Example

[
  {
    "id": 1,
    "title": "Certificate of Authenticity (COA)",
    "type": "includes",
    "description": "Original paper COA with numbering, and government seal"
  },
  {
    "id": 2,
    "title": "Original Box",
    "type": "includes",
    "description": "Original government box with inner and outer casing"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200
application/json
Default Response
id
integer

Attribute ID

title
string

Attribute title

type
string

Attribute type

description
string

Attribute description