Skip to main content

Quickstart

This guide gets you from zero to a working ProcureIQ API request quickly.

1. Create an account

  • Sign in to ProcureIQ.
  • Open the developer portal.
  • Create an API key with products:read scope.

2. Make your first request

curl --request GET \
--url 'https://api.procureiq.com/api/v1/products?q=industrial%20fans&limit=5' \
--header 'x-api-key: piq_live_xxx'

3. Expected response shape

{
"success": true,
"data": {
"items": []
},
"meta": {
"cursor": null
}
}

4. Next steps

  • Add pagination and filtering with Product Search.
  • Subscribe to operational events with Webhooks.
  • Move to OAuth if you are building a multi-tenant integration.