Catalog data access and platform documentation
Use the live catalog for discovery and comparisons. Public read-only endpoints support website workflows; production API access, exports, and partner integrations are reviewed through a data access request.
Catalog Workflows
Use the live catalog, filters, comparison pages, and quote paths for buyer research.
Topics covered:
- Browse robots
- Filter by category
- Compare models
- Request quotes
Read-Only Catalog Endpoints
Public website endpoints return source-backed catalog records used by Humanoid Hub surfaces.
Topics covered:
- Product lists
- Product detail lookup
- Keyword search
- Pagination
Source Confidence Methodology
Review how market-intelligence facts are labeled as verified, reported, estimated, held, or omitted.
Topics covered:
- Source hierarchy
- Confidence labels
- Review states
- Corrections policy
Data Access Requests
Production data exports, API partnerships, and commercial usage are reviewed through contact.
Topics covered:
- Bulk exports
- Partner API use
- Embeddable data
- Attribution terms
Security & Privacy
Review privacy, attribution, and support paths before sharing sensitive information.
Topics covered:
- Privacy policy
- Contact support
- Attribution
- No credentials in forms
Public read-only endpoints
These endpoints are available for public catalog workflows. They are not a self-service commercial API contract, and Humanoid Hub does not issue public API keys from this page.
/api/productsList published, non-archived product records with filters and pagination.
Parameters: search, category, manufacturer, tags, minPrice, maxPrice, limit, offset
/api/products/[slug]Return one published, non-archived product record by slug.
Parameters: slug
/api/products/search?q={query}Search published product records by keyword.
Parameters: q
// Inspect a small page of published catalog records.
// No public API key is required for this read-only endpoint.
fetch('https://www.humanoidhub.ai/api/products?limit=10&search=humanoid')
.then((response) => response.json())
.then((data) => console.log(data));
// Response shape
{
"success": true,
"data": {
"products": [],
"pagination": {
"total": 0,
"limit": 10,
"offset": 0,
"hasMore": false
}
}
}Need production data access?
Request access for evaluated exports, commercial API usage, or partner integration planning. Do not send secrets, credentials, or sensitive buyer data in the request.