Alpha Omega Peptide APIalphaomegapeptide.com ↗
Access Alpha Omega Peptide's product catalog via API. Search peptides, retrieve pricing, stock status, variants, and category data from alphaomegapeptide.com.
What is the Alpha Omega Peptide API?
The Alpha Omega Peptide API provides 3 endpoints for querying the product catalog at alphaomegapeptide.com, a US-based research peptide supplier. The search_products endpoint returns paginated listings with price, sale status, SKU, and stock availability. get_product delivers full detail on a single item including image URLs, tags, and product variants. list_categories exposes the full category tree so you can scope searches precisely.
curl -X GET 'https://api.parse.bot/scraper/29ce16c7-7c88-42dd-a0b5-d2ff2b00e3e0/search_products?search=BPC' \ -H 'X-API-Key: $PARSE_API_KEY'
Search and browse the product catalog with optional text search, category filtering, and pagination. Returns paginated product listings including pricing, availability, and category information. When no search or category filter is provided, returns all products ordered by the site's default. Pagination is controlled by page and per_page parameters.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination (starts at 1). |
| search | string | Free-text search query to filter products by name or description (e.g. 'BPC', 'NAD'). |
| category | string | Category ID to filter products. Obtain category IDs from the list_categories endpoint. |
| per_page | integer | Number of products per page (1-100). |
{
"type": "object",
"fields": {
"page": "current page number",
"count": "number of products in this response",
"per_page": "results per page",
"products": "array of product objects with id, name, slug, sku, type, permalink, price, regular_price, sale_price, on_sale, currency, in_stock, stock_availability, average_rating, review_count, categories, images, short_description"
},
"sample": {
"data": {
"page": 1,
"count": 5,
"per_page": 5,
"products": [
{
"id": 106692,
"sku": "BPC157-TAB-500MCG",
"name": "BPC-157 500MCG Capsules",
"slug": "bpc-157-500mcg-capsules",
"type": "simple",
"price": 170,
"images": [
{
"id": 196167,
"src": "https://alphaomegapeptide.com/wp-content/uploads/2026/02/BPC-157-500MCG.jpg",
"thumbnail": "https://alphaomegapeptide.com/wp-content/uploads/2026/02/BPC-157-500MCG-300x300.jpg"
}
],
"on_sale": false,
"currency": "USD",
"in_stock": true,
"permalink": "https://alphaomegapeptide.com/products/bpc-157-500mcg-capsules/",
"categories": [
{
"id": 31,
"name": "Anti-Aging Products",
"slug": "anti-aging-products"
}
],
"sale_price": 170,
"review_count": 0,
"regular_price": 170,
"average_rating": "0",
"short_description": "<p><strong>BPC-157 500MCG</strong> – A pharmaceutical-grade peptide in a convenient 60-capsule container for advanced scientific research.</p>",
"stock_availability": ""
}
]
},
"status": "success"
}
}About the Alpha Omega Peptide API
Product Search and Browse
The search_products endpoint accepts optional search, category, and pagination parameters (page, per_page up to 100). With no filters it returns the full catalog ordered by site defaults. Each result includes id, name, slug, sku, type, permalink, price, regular_price, sale_price, on_sale, currency (always USD), and in_stock. Use the search parameter with terms like BPC or NAD to narrow results, or pass a numeric category ID obtained from list_categories.
Single-Product Detail
get_product takes a numeric product_id (sourced from search_products results) and returns the complete record for that item. Response fields include sku, tags (array of objects with id, name, slug), type (simple or variable), price, on_sale, currency, and an images array where each entry carries id, src, and thumbnail. Variable products surface their variations, making it straightforward to enumerate size or concentration options for a given peptide.
Category Listing
list_categories requires no inputs and returns up to 100 categories in a single call. Each category object includes id, name, slug, description, parent (for hierarchy), count (number of products in that category), and image. The id field from this endpoint feeds directly into the category parameter of search_products, enabling filtered browsing by peptide class or product type.
The Alpha Omega Peptide API is a managed, monitored endpoint for alphaomegapeptide.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when alphaomegapeptide.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official alphaomegapeptide.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Track price changes and sale status across the peptide catalog using
price,regular_price, andon_salefields. - Build a product comparison tool that pulls full descriptions, images, and variants from
get_product. - Aggregate in-stock peptide SKUs across all categories for inventory monitoring.
- Map the full category hierarchy with
list_categoriesto display a structured browsing interface. - Search for specific compounds by name fragment (e.g. 'BPC-157', 'TB-500') using the
searchparameter. - Enumerate all variants of a variable product to surface concentration and quantity options.
- Generate a product feed indexed by SKU and category for downstream research tooling.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Alpha Omega Peptide offer an official developer API?+
How do I filter search results to a specific product category?+
list_categories first to retrieve category objects, each with a numeric id field. Pass that id as the category parameter in search_products. The response will be scoped to products in that category. You can combine category with a search string to narrow further.Does `get_product` return customer reviews or ratings?+
price, images, tags, type, and variations, but does not expose customer review content or star ratings. You can fork this API on Parse and revise it to add an endpoint that retrieves review data for a given product.What is the difference between `price`, `regular_price`, and `sale_price` in `search_products`?+
regular_price is the standard listed price. When a product is on sale (on_sale: true), sale_price reflects the discounted amount and price matches sale_price. When nothing is on sale, price and regular_price are equal and sale_price is typically empty.Does the API expose subscription or bulk-pricing tiers?+
price per product (plus regular_price and sale_price where applicable). Tiered or subscription pricing is not exposed in the current endpoints. You can fork this API on Parse and revise it to add endpoints that surface those pricing structures if they exist on the site.