Authorizations
API key authentication
Query Parameters
Number of products to return
Required range:
1 <= x <= 100Filter products by merchant organization ID
Number of products to skip
Required range:
x >= 0curl --request GET \
--url https://api.paygentic.io/v0/products \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "prod_x1y2z3a4b5c6d7e8",
"object": "product",
"createdAt": "2024-01-10T08:15:00Z",
"description": "Enterprise access to advanced language models for natural language tasks",
"merchantId": "org_f9g0h1i2j3k4l5m6",
"metadata": {
"category": "ai_services",
"tier": "enterprise"
},
"name": "Large Language Model Service",
"updatedAt": "2024-01-10T08:15:00Z"
},
{
"id": "prod_n7o8p9q0r1s2t3u4",
"object": "product",
"createdAt": "2024-02-20T11:30:00Z",
"description": "Scalable data warehousing with real-time query capabilities",
"merchantId": "org_v5w6x7y8z9a0b1c2",
"metadata": {
"region": "global",
"support_level": "premium"
},
"name": "Cloud Data Warehouse",
"updatedAt": "2024-03-05T16:45:00Z"
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 2
}
}curl --request GET \
--url https://api.paygentic.io/v0/products \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "prod_x1y2z3a4b5c6d7e8",
"object": "product",
"createdAt": "2024-01-10T08:15:00Z",
"description": "Enterprise access to advanced language models for natural language tasks",
"merchantId": "org_f9g0h1i2j3k4l5m6",
"metadata": {
"category": "ai_services",
"tier": "enterprise"
},
"name": "Large Language Model Service",
"updatedAt": "2024-01-10T08:15:00Z"
},
{
"id": "prod_n7o8p9q0r1s2t3u4",
"object": "product",
"createdAt": "2024-02-20T11:30:00Z",
"description": "Scalable data warehousing with real-time query capabilities",
"merchantId": "org_v5w6x7y8z9a0b1c2",
"metadata": {
"region": "global",
"support_level": "premium"
},
"name": "Cloud Data Warehouse",
"updatedAt": "2024-03-05T16:45:00Z"
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 2
}
}API key authentication
Number of products to return
1 <= x <= 100Filter products by merchant organization ID
Number of products to skip
x >= 0