Skip to main content
GET
/
price-list-items
List price list items
curl --request GET \
  --url https://app.fintoro.sk/api/public/v1/price-list-items \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 701,
      "name": "Service package",
      "description": "Monthly service and support",
      "unitId": 1,
      "unit": {
        "id": 1,
        "name": "pcs"
      },
      "unitPrice": 129.9,
      "vatRate": 20,
      "unitPriceWithVat": 155.88,
      "stock": 12,
      "stocks": [
        {
          "warehouseId": 15,
          "warehouseName": "Main warehouse",
          "warehouseCode": "MAIN-WH",
          "stockQuantity": 7
        }
      ],
      "ean": "8586012345678",
      "useWarehouse": true,
      "warehouseCode": "SKU-PUBLIC-001",
      "enableNegativeStock": false,
      "maxStock": 250,
      "purchasePrice": 89.5,
      "purchaseVatRate": 20,
      "purchasePriceWithVat": 107.4
    }
  ],
  "paginator": {
    "currentPage": 2,
    "perPage": 10,
    "totalPages": 5,
    "totalResults": 42,
    "currentFrom": 11,
    "currentTo": 20,
    "firstPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
    "lastPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=5",
    "nextPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=3",
    "previousPageUrl": "https://app.fintoro.sk/api/public/v1/invoices?page=1",
    "links": [
      {
        "url": "https://app.fintoro.sk/api/public/v1/invoices?page=2",
        "label": "2",
        "active": false
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token created for a specific company in Integrations → API.

Query Parameters

name
string

Full-text search by item name, warehouse code, or EAN.

Maximum string length: 255
Example:

"match"

priceFrom
number<float>

Minimum unit price excluding VAT.

Example:

10

priceTo
number<float>

Maximum unit price excluding VAT.

Example:

100

stockFrom
number<float>

Minimum current stock level of the item.

Example:

1

stockTo
number<float>

Maximum current stock level of the item.

Example:

50

onlyWarehouseItems
boolean
default:false

When true, the endpoint returns only items with warehouse tracking enabled.

Example:

true

sortBy
enum<string>
default:name

Field used to sort the list.

Available options:
name,
unit_price,
stock
Example:

"stock"

sortDirection
enum<string>
default:asc

Sort direction.

Available options:
asc,
desc
Example:

"desc"

perPage
integer
default:50

Number of items per page. Maximum is 200.

Required range: 1 <= x <= 200
Example:

50

page
integer
default:1

Page number to return.

Required range: x >= 1
Example:

2

Response

Price list item list.

data
object[]

Items on the current page.

paginator
object

Pagination metadata for the current result.