Frog Dog Toy
$20
Product data
Structured pet supplies product data for search, recommendations, and AI shopping agents.
In the catalog
A live slice of the pet supplies catalog — titles, images, and prices the API returns today.
Frog Dog Toy
$20
6 Chain Rainbow Heart Rope Dog Toy
$18
Pendleton Explorer Dog Collar
$19
Le Creuset Stoneware Large Pet Bowl, Shell Pink
£39
Yaheetech 23.5in Cat Tree Tower
$54
Spot Farms - Chicken Nuggets
$20
Carhartt Tradesman Collar
$21
Medium Bacon Stick Made With Real Bacon
$13
Fetch Padded Dog Coat Xs - Oxford Blue/light Mist/lavender Grey
$29
Nutrisource Grain Free Seafood Select With Salmon Dry Dog Food-12-lb- 073893430018
$50
Pro Plan Classic Gravy Variety Pack Cat 2-12 / 5.5 Oz
$76
Versele - Laga Complete Guinea Pig 3lb
$17
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": "pet supplies and animal products",
"filters": {
"category_ids": [
"QH6"
]
},
"limit": 20
}'from channel3_sdk import Channel3
client = Channel3()
response = client.products.search(
query="pet supplies and animal products",
filters={"category_ids": ["QH6"]},
limit=20,
)import { Channel3 } from "@channel3/sdk";
const client = new Channel3();
const response = await client.products.search({
query: "pet supplies and animal products",
filters: {
category_ids: ["QH6"],
},
limit: 20,
});Adjacent product-data APIs for the same shopping workflows.
Brand-specific catalogs available through the same API.
How developers pull pet supplies into agents, search, and affiliate flows.