Get product by id
curl --request GET \
--url https://dev.api.withconvexity.com/v1/products/{productId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://dev.api.withconvexity.com/v1/products/{productId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://dev.api.withconvexity.com/v1/products/{productId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": true,
"message": "Product retrieved successfully",
"data": {
"id": 12,
"slug": "wallet-api",
"name": "Wallet API",
"description": "Programmable multi-chain wallets",
"planIds": [
"3",
"4"
],
"capabilities": [
"wallets.create",
"wallets.transfer"
],
"metadata": {
"category": "payments"
},
"status": "active",
"createdBy": "admin_1",
"deletedAt": null,
"createdAt": "2026-01-10T08:00:00.000Z",
"updatedAt": "2026-05-02T11:20:00.000Z"
}
}{
"status": false,
"message": "productId must be a positive integer"
}{
"status": false,
"message": "Authorization token is missing or malformed."
}{
"status": false,
"message": "Product not found"
}Products
Get product by id
Returns a single product by its numeric id.
GET
/
v1
/
products
/
{productId}
Get product by id
curl --request GET \
--url https://dev.api.withconvexity.com/v1/products/{productId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://dev.api.withconvexity.com/v1/products/{productId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://dev.api.withconvexity.com/v1/products/{productId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": true,
"message": "Product retrieved successfully",
"data": {
"id": 12,
"slug": "wallet-api",
"name": "Wallet API",
"description": "Programmable multi-chain wallets",
"planIds": [
"3",
"4"
],
"capabilities": [
"wallets.create",
"wallets.transfer"
],
"metadata": {
"category": "payments"
},
"status": "active",
"createdBy": "admin_1",
"deletedAt": null,
"createdAt": "2026-01-10T08:00:00.000Z",
"updatedAt": "2026-05-02T11:20:00.000Z"
}
}{
"status": false,
"message": "productId must be a positive integer"
}{
"status": false,
"message": "Authorization token is missing or malformed."
}{
"status": false,
"message": "Product not found"
}⌘I
