/catalogList peptide APIs
Returns the active peptide API catalog with current stock posture, available scales, and release purity floor.
scalestringFilter by scale: g, 100g, kg.
in_stockbooleanOnly return items with on-hand inventory.
limitintegerPage size, max 100. Default 50.
cursorstringPagination cursor from previous response.
curl https://api.omnilabs.bio/v1/catalog \ -H "Authorization: Bearer sk_live_..."
{
"object": "list",
"data": [
{
"code": "OL-101",
"name": "Semaglutide",
"cas": "910463-68-2",
"purity_floor": "99.0",
"scales": ["g", "100g", "kg"],
"in_stock": true,
"lead_time_days": 7
},
{
"code": "OL-102",
"name": "Tirzepatide",
"cas": "2023788-19-2",
"purity_floor": "99.0",
"scales": ["g", "100g", "kg"],
"in_stock": true,
"lead_time_days": 10
}
],
"has_more": true,
"next_cursor": "cur_8a2f"
}