Atelier Choux Bib - In Bloom Blue
$48
Product data
Structured baby & toddler product data for search, recommendations, and AI shopping agents.
In the catalog
A live slice of the baby & toddler catalog — titles, images, and prices the API returns today.
Atelier Choux Bib - In Bloom Blue
$48
Linen Sling - Desert Lark
$68
Bugaboo Fox/cameleon/lynx Sun Canopy, Midnight Black
£50
2 Pack Bibs - Coeur Glitter/sangria
€40
Oyster 4 Pushchair, Pistachio
£629
Faux Leather Changing Mat
$24
John Lewis Baby Frill Sweaters, Pack Of 2, Pink, 2-3 Years
£15
Cotton Muslin Swaddle Blanket 3 Pack - White
$50
Wild Wiggles Baby Activity Gym & Machine-washable Play Mat, Green
$28
Omiepod Refill - Pink Purple
$11
Retired - Camp Cricket - Foxy Baby Gift Set
$80
Besafe Izi Flex Fix 2 High-back Booster Seat, Black Cab
£199
One endpoint
The same search used in the demo above. Pass category_ids to keep results inside this catalog. 1,000 free searches a month.
curl https://api.trychannel3.com/v1/search \
-H "x-api-key: $CHANNEL3_API_KEY" \
-H "content-type: application/json" \
-d '{
"query": "baby and toddler products",
"filters": {
"category_ids": [
"rXe"
]
},
"limit": 20
}'from channel3_sdk import Channel3
client = Channel3()
response = client.products.search(
query="baby and toddler products",
filters={"category_ids": ["rXe"]},
limit=20,
)import { Channel3 } from "@channel3/sdk";
const client = new Channel3();
const response = await client.products.search({
query: "baby and toddler products",
filters: {
category_ids: ["rXe"],
},
limit: 20,
});Adjacent product-data APIs for the same shopping workflows.
Brand-specific catalogs available through the same API.
How developers pull baby & toddler into agents, search, and affiliate flows.