Instagram Shopping
AnnouncedInstagram's native shopping features enabling brands and creators to tag products in posts, Reels, and Stories with in-app checkout available in supported markets.
Instagram Shopping has announced plans to support UCP as a participant. No public endpoint is available yet.
Instagram Shopping is Meta's native commerce layer within Instagram, enabling brands and creators to tag products directly in posts, Reels, Stories, and Lives. Tagged products link to a product detail page within the Instagram app, and in supported markets (primarily the US), shoppers can complete purchases without leaving Instagram. The Shop tab provides a browsable storefront within the app for brands that have set up an Instagram Shop.
Instagram Shopping is powered by the Meta Commerce API, which handles product catalog management, inventory, and order processing. Merchants connect their product catalog through Meta's Commerce Manager or via third-party platforms like Shopify. The Commerce API provides programmatic access to catalog management, order management for in-app checkout orders, and product tagging for content.
Meta has been building out its AI commerce capabilities alongside Instagram Shopping, including AI-powered product recommendations and agent-like shopping assistance features. The Commerce API is well-documented and actively maintained. For agents, Instagram Shopping represents both a distribution channel (reaching Instagram's user base) and an inventory source (brands that primarily sell through social commerce channels may have unique products not listed on traditional marketplaces). Meta is actively exploring how its AI tools, including the Llama model family, interact with commerce infrastructure.
Why This Matters for UCP
Instagram Shopping connects agents to Meta's social commerce infrastructure, enabling product catalog access, in-app checkout order management, and creator-driven commerce surfaces through the Commerce API.
UCP Capabilities
UCP Endpoint
Announced — Endpoint not yet publicly available
Integration Example
// Meta Commerce API for Instagram Shopping catalog and order management.
// Uses Graph API with Commerce-scoped access tokens.
const graphBase = 'https://graph.facebook.com/v19.0';
// Get catalog items for an Instagram Shop
const catalog = await fetch(
graphBase + '/' + catalogId + '/products?fields=name,price,availability,image_url',
{ headers: { Authorization: 'Bearer ' + accessToken } }
).then(r => r.json());
// Retrieve in-app checkout orders
const orders = await fetch(
graphBase + '/' + commerceAccountId + '/orders?fields=id,buyer_details,items,shipping',
{ headers: { Authorization: 'Bearer ' + accessToken } }
).then(r => r.json());
// Fulfill an order (mark as shipped)
await fetch(graphBase + '/' + orderId + '/shipments', {
method: 'POST',
headers: { Authorization: 'Bearer ' + accessToken, 'Content-Type': 'application/json' },
body: JSON.stringify({
items: [{ retailer_id: itemRetailerId, quantity: 1 }],
tracking_info: { tracking_number: trackingNum, carrier: 'UPS' },
}),
});Category
Social CommerceUCP Status
AnnouncedTags
Pricing
freemium
Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
M. Lee
Backend Developer · Mar 3, 2026
Works well for our use case. The documentation is accurate and the implementation matches what the spec describes.
R. Kapoor
Platform Engineer · Jan 15, 2026
Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.
J. Santos
Senior Engineer · Feb 28, 2026
Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.
3 other tools in Social Commerce
Is this your tool? Claim this listing