Want to include e-commerce product info in your app? Our API is exactly what you were looking for.
The Product Registry is an AI-first index of products. We clean, normalize, and structure product data so you can plug it straight into your app, bot, or internal tools. No crawling, no scraping, no guesswork.
GET /api/v1/products/search?q=iphone&limit=10
{
"products": [
{
"name": "iPhone 17 Pro",
"brand": "Apple",
"gtin": "194253178123",
"price": 999.00,
"currency": "USD",
"availability": "in_stock",
"merchant_url": "https://example.com/product/iphone-17-pro"
}
]
}
from pydantic_ai import Agent
from product_registry import product_search_tool
agent = Agent(
'gateway/openai:gpt-4o-mini',
tools=[product_search_tool()],
system_prompt='Search the Product Registry for the given query and return the results.',
)
result = agent.run_sync(
'Find me the best iPhone 17 Pro deals that ship to Canada.'
)