Skip to main content

Get Product

Endpoint for getting a Product.

info

Please be aware that this endpoint requires a Manage Products API Key.

GET /api/v1/groups/{group_id}/products/{product_id}

Response

CodeDescription
200Success
400Bad Request / Validation error
500Internal Error

Example Usage

get.js
var headers = new Headers();
headers.append('Authorization', 'API_KEY');

var requestOptions = {
method: 'GET',
headers: headers,
redirect: 'follow'
};
const group_id = '';
const product_id = '';
const url = `https://api.reverepayments.dev/api/v1/groups/${group_id}/products/${product_id}`;
fetch(url, requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));

Example Success Response

{
"id": "eef1b240-6e4d-42f7-93ea-873d165aa696",
"group_id": "eef1b240-6e4d-42f7-93ea-873d165aa696",
"name": "Flat white",
"description": "Steamed milk, double espresso",
"unit_of_measure": "pc",
"included_tax_amount": 50,
"amount": 670,
"created_at": "2025-08-18T00:00:00Z",
"updated_at": "2025-08-18T00:00:00Z"
}