GET
/
api
/
products
curl --request GET \
  --url https://api-v2.vitau.mx/api/products/ \
  --header 'X-API-KEY: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": 123,
      "presentation": "<string>",
      "base": {
        "id": 123,
        "name": "<string>",
        "pharmaceutical_company": "<string>",
        "category": "<string>",
        "tags": {
          "id": 123,
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "name": "<string>"
        },
        "medical_information": {
          "id": 123,
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "active_ingredient": "<string>",
          "is_generic": true,
          "group_number": 1073741823,
          "requires_prescription": true,
          "base_product": 123
        }
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "price": "<string>",
      "is_active": true,
      "has_shortage": true,
      "ean_key": "<string>",
      "default_image": "<string>",
      "name_slug": "<string>"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

A search term.

ordering
string

Which field to use when ordering the results.

base__diseases
string
base__category
string
base__pharmaceutical_company
string
batches__store
string
current_supplier
string
is_active
string
has_shortage
string
min_price
number
max_price
number
id__in
number

Múltiples valores separados por comas.

ean_key__in
string

Múltiples valores separados por comas.

page
integer

A page number within the paginated result set.

limit
integer

Number of results to return per page.

Response

200 - application/json
count
integer
required
results
object[]
required
next
string | null
previous
string | null