Skip to main content
GET
/
products
List products
curl --request GET \
  --url https://app.paperlink.online/api/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "data": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "unitPrice": 123,
        "currency": "<string>",
        "description": "<string>",
        "sku": "<string>",
        "taxRate": 123,
        "type": "<string>",
        "unitOfMeasure": "<string>",
        "status": "active",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "hasMore": true,
    "nextCursor": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.paperlink.online/llms.txt

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

Authorizations

Authorization
string
header
required

API key from Settings > Integrations > API Keys

Query Parameters

status
enum<string>
default:active
Available options:
active,
archived,
all
after
string<uuid>

Cursor for pagination

limit
integer
default:20
Required range: 1 <= x <= 100

Response

Product list

data
object