Get Products List

This API returns a paginated list products that are available on Driffle.

GET /products

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Params

ParamParam TypeTypeRequiredDescription

searchPhrase

body

string

No

Search phrase for product name

slug

body

string

No

Slug of the product

onlyUnmapped

body

boolean

No

Returns only unmapped products

releasedSince

body

string (YYYY-MM-DD)

No

Returns products created since given date

createdSince

body

string (YYYY-MM-DD)

No

Returns products created since given date

sort

body

string

No

allowed values: best-selling

page

body

Number

No

Page Number. Default value: 1

limit

body

Number

No

Number of products per page. Default value: 20

Response

{
  "statusCode": 200,
  "message": "string",
  "data": [
    {
      "productId": 0,
      "title": "string",
      "image": "string",
      "slug": "string",
      "platform": "string",
      "genres": [
        "string"
      ],
      "regions": [
        "string"
      ],
      "productTypes": [
        "string"
      ],
      "languages": [
        "string"
      ],
      "minPrice": 0,
      "maxPrice": 0
    }
  ]
}

Supported Params

Last updated