cURL
Order
Get apipublicorder product
GET
cURL
Path Parameters
Response
200 - undefined
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.vambe.me/api/public/order/{id}/productconst 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)curl --request GET \
--url https://api.vambe.me/api/public/order/{id}/productconst 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)Was this page helpful?
