Parrot External API
  1. Inventory Management
Parrot External API
  • Home
  • Changelog
  • Authentication and Usage
  • Endpoints
    • Inventory Management
      • List Suppliers
        GET
      • List Supplies
        GET
    • Orders
      • List Orders
      • V1 - List Order Items
      • V2 - List Order Items
      • List Product Types
    • Discounts
      • List Discounts
      • List Discount Usages
    • List All Stores
      GET
    • List Order Invoices
      GET
    • List Order Payments
      GET
    • List Cashier Sessions
      GET
    • List Store Users
      GET
  1. Inventory Management

List Supplies

GET
/v1/supplies
This endpoint retrieves supplies for a given organization with pagination support.
It includes information about the supply as well as information on their min, max, and current count.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/supplies?pageSize=10&page=0' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "pagination": {
        "next": 1,
        "previous": null,
        "count": 144,
        "current": 0,
        "pageSize": 10
    },
    "data": [
        {
            "uuid": "36c98736-ff13-4d0f-8be9-bfdf0df80438",
            "name": "Aceite Ajonjoli-1759251544838",
            "supplyId": "IN-1732229436954",
            "sku": null,
            "presentationName": "Galon",
            "presentationUnit": "LITER",
            "createdAt": "2024-11-21 22:50:36.954",
            "updatedAt": "2024-11-28 21:54:49.567",
            "supplyCenterUuid": "048972ed-f075-4996-97d9-d0ce5c483825",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Gomez)",
            "minCount": 1,
            "idealCount": 2,
            "price": 112.49,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 112.49,
            "lastPurchaseAt": null,
            "supplierUuid": "561c34c7-8248-4bf7-bdf7-4bdd2ceb2bd8",
            "supplierName": "Distmar S de RL de CV",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "07cd2e73-bea4-4417-8fce-321e2726e913",
            "name": "Aceite de Trufa",
            "supplyId": "IN-1732229436960",
            "sku": "50151513",
            "presentationName": "Botella",
            "presentationUnit": "MILLILITER",
            "createdAt": "2024-11-21 22:50:36.96",
            "updatedAt": "2025-10-10 21:34:35.481",
            "supplyCenterUuid": "4cd038e1-61e9-42d8-a2d5-ad90f43b133b",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Lorenzo)",
            "minCount": null,
            "idealCount": null,
            "price": 245.0,
            "lastCount": 0.948,
            "lastCountDate": "2025-12-10 22:50:53.0",
            "lastPrice": null,
            "priceWithTaxes": 245.0,
            "lastPurchaseAt": null,
            "supplierUuid": "7c2c5df1-cecf-426b-8868-2d4f0e0c1dc5",
            "supplierName": "Ramon Lopez Gomez",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "07cd2e73-bea4-4417-8fce-321e2726e913",
            "name": "Aceite de Trufa",
            "supplyId": "IN-1732229436960",
            "sku": "50151513",
            "presentationName": "Botella",
            "presentationUnit": "MILLILITER",
            "createdAt": "2024-11-21 22:50:36.96",
            "updatedAt": "2025-10-10 21:34:35.481",
            "supplyCenterUuid": "048972ed-f075-4996-97d9-d0ce5c483825",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Gomez)",
            "minCount": 4,
            "idealCount": 6,
            "price": 245.0,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 245.0,
            "lastPurchaseAt": null,
            "supplierUuid": "7c2c5df1-cecf-426b-8868-2d4f0e0c1dc5",
            "supplierName": "Ramon Lopez Gomez",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "2369c029-da16-45f4-ab36-72478d52b0b1",
            "name": "Aceite Olivo",
            "supplyId": "IN-1732229436962",
            "sku": "50151513",
            "presentationName": "Galon",
            "presentationUnit": "LITER",
            "createdAt": "2024-11-21 22:50:36.962",
            "updatedAt": "2025-10-10 21:34:35.497",
            "supplyCenterUuid": "4cd038e1-61e9-42d8-a2d5-ad90f43b133b",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Lorenzo)",
            "minCount": null,
            "idealCount": null,
            "price": 489.0,
            "lastCount": 0.0017,
            "lastCountDate": "2025-12-10 22:50:53.0",
            "lastPrice": null,
            "priceWithTaxes": 489.0,
            "lastPurchaseAt": null,
            "supplierUuid": "447bbb3c-e2be-4b1e-9f42-5176593c35c2",
            "supplierName": "Jesus Manuel Nuñez Ortiz",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "2369c029-da16-45f4-ab36-72478d52b0b1",
            "name": "Aceite Olivo",
            "supplyId": "IN-1732229436962",
            "sku": "50151513",
            "presentationName": "Galon",
            "presentationUnit": "LITER",
            "createdAt": "2024-11-21 22:50:36.962",
            "updatedAt": "2025-10-10 21:34:35.497",
            "supplyCenterUuid": "048972ed-f075-4996-97d9-d0ce5c483825",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Gomez)",
            "minCount": 3,
            "idealCount": 4,
            "price": 489.0,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": 489.0,
            "priceWithTaxes": 489.0,
            "lastPurchaseAt": "2025-12-12 23:11:47.976",
            "supplierUuid": "447bbb3c-e2be-4b1e-9f42-5176593c35c2",
            "supplierName": "Jesus Manuel Nuñez Ortiz",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "a60c8c9c-8a19-4ca4-b79a-6004346cb2ab",
            "name": "Aceite Pam aerosol",
            "supplyId": "IN-1732229436965",
            "sku": "50151513",
            "presentationName": "Paquete",
            "presentationUnit": "UNIT",
            "createdAt": "2024-11-21 22:50:36.965",
            "updatedAt": "2025-10-10 21:57:50.601",
            "supplyCenterUuid": "4cd038e1-61e9-42d8-a2d5-ad90f43b133b",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Lorenzo)",
            "minCount": null,
            "idealCount": null,
            "price": 169.25,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 169.25,
            "lastPurchaseAt": null,
            "supplierUuid": "e03b42ba-2c21-45fe-9256-133b66437e52",
            "supplierName": "Nueva Walmart de Mexico",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "a60c8c9c-8a19-4ca4-b79a-6004346cb2ab",
            "name": "Aceite Pam aerosol",
            "supplyId": "IN-1732229436965",
            "sku": "50151513",
            "presentationName": "Paquete",
            "presentationUnit": "UNIT",
            "createdAt": "2024-11-21 22:50:36.965",
            "updatedAt": "2025-10-10 21:57:50.601",
            "supplyCenterUuid": "048972ed-f075-4996-97d9-d0ce5c483825",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Gomez)",
            "minCount": 4,
            "idealCount": 8,
            "price": 169.25,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": 189.25,
            "priceWithTaxes": 169.25,
            "lastPurchaseAt": "2025-12-12 19:40:57.263",
            "supplierUuid": "e03b42ba-2c21-45fe-9256-133b66437e52",
            "supplierName": "Nueva Walmart de Mexico",
            "supplyCategory": "Abarrotes"
        },
        {
            "uuid": "0de7fb11-59ee-422c-8324-5cd06fb40a79",
            "name": "Aceite rojo, Prep-1758737482325",
            "supplyId": "IN-1741412301691",
            "sku": "",
            "presentationName": "",
            "presentationUnit": "LITER",
            "createdAt": "2025-03-08 05:38:21.691",
            "updatedAt": "2025-03-27 22:14:44.223",
            "supplyCenterUuid": "048972ed-f075-4996-97d9-d0ce5c483825",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Gomez)",
            "minCount": null,
            "idealCount": null,
            "price": 24.68,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 24.68,
            "lastPurchaseAt": null,
            "supplierUuid": "0af277b7-c0af-4512-856a-6724f6e16696",
            "supplierName": "Interno",
            "supplyCategory": "Produciones"
        },
        {
            "uuid": "0de7fb11-59ee-422c-8324-5cd06fb40a79",
            "name": "Aceite rojo, Prep-1758737482325",
            "supplyId": "IN-1741412301691",
            "sku": "",
            "presentationName": "",
            "presentationUnit": "LITER",
            "createdAt": "2025-03-08 05:38:21.691",
            "updatedAt": "2025-03-27 22:14:44.223",
            "supplyCenterUuid": "4cd038e1-61e9-42d8-a2d5-ad90f43b133b",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Lorenzo)",
            "minCount": null,
            "idealCount": null,
            "price": 24.68,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 24.68,
            "lastPurchaseAt": null,
            "supplierUuid": "0af277b7-c0af-4512-856a-6724f6e16696",
            "supplierName": "Interno",
            "supplyCategory": "Produciones"
        },
        {
            "uuid": "909cbfec-56cc-4f5d-857b-73b6f96f963b",
            "name": "Aceite vegetal",
            "supplyId": "IN-1732229436969",
            "sku": "50151513",
            "presentationName": "porron",
            "presentationUnit": "LITER",
            "createdAt": "2024-11-21 22:50:36.969",
            "updatedAt": "2025-10-10 21:34:35.527",
            "supplyCenterUuid": "4cd038e1-61e9-42d8-a2d5-ad90f43b133b",
            "supplyCenterName": "Centro de almacenamiento Tacos David (Lorenzo)",
            "minCount": null,
            "idealCount": null,
            "price": 640.0,
            "lastCount": null,
            "lastCountDate": null,
            "lastPrice": null,
            "priceWithTaxes": 640.0,
            "lastPurchaseAt": null,
            "supplierUuid": "7c2c5df1-cecf-426b-8868-2d4f0e0c1dc5",
            "supplierName": "Ramon Lopez Gomez",
            "supplyCategory": "Abarrotes"
        }
    ],
    "datetime": "2025-12-16T19:41:25-06:00"
}
Modified at 2025-12-12 17:19:17
Previous
List Suppliers
Next
List Orders
Built with