Skip to main content
GET
/
api
/
public
/
order
/
{id}
/
product
cURL
curl --request GET \
  --url https://api.vambe.me/api/public/order/{id}/product
const options = {method: 'GET'};

fetch('https://api.vambe.me/api/public/order/{id}/product', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/public/order/{id}/product"

response = requests.get(url)

print(response.text)

Path Parameters

id
string
required

Response

200 - undefined