Skip to main content
GET
/
catalogs
/
products
cURL
curl --request GET \
  --url http://localhost:3000/connect/v1/catalogs/products/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "results": [
    {
      "name": "<string>",
      "id": "<string>",
      "premiums": "<string>",
      "is_active": "<string>",
      "updated_on": "2023-11-07T05:31:56Z",
      "created_on": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "image": "<string>",
      "creator": "<string>",
      "updater": "<string>"
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fairfood.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Query Parameters

name
string

Filter products by name.

description
string

Filter products by description.

updated_after
number

Filter products updated after a specified timestamp.

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required

The total count of products in the response.

results
object[]
required

An array containing details of products returned in the response.

next
string<uri> | null

The URI for the next page of results, if available.

previous
string<uri> | null

The URI for the previous page of results, if available.