Skip to main content
GET
/
v2
/
products
/
{id}
Retrieve a product
curl --request GET \
  --url https://thirdparty.qonto.com/v2/products/{id} \
  --header 'Authorization: Bearer <token>'
{ "product": { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "title": "Web Development Service", "type": "service", "unit_price": { "value": "150.00", "currency": "EUR" }, "vat_rate": "0.2", "organization_id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890", "created_at": "2026-01-15T10:30:00Z", "updated_at": "2026-01-15T10:30:00Z", "description": "Full-stack web development service", "internal_note": "Preferred vendor for web projects", "unit": "hour", "vat_exemption_code": "N1", "links": [ { "title": "Product page", "url": "https://www.example.com/product" } ] } }

Documentation Index

Fetch the complete documentation index at: https://docs.qonto.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Path Parameters

id
string<uuid>
required

ID of the product

Response

Returns the product identified by the id path parameter.

product
object
required

A product belonging to the organization.