Back to Directory
Instagram Shopping favicon

Instagram Shopping

Announced

Instagram'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

checkoutorder management

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' },
  }),
});

UCP Status

Announced

Tags

social-commercein-app-checkoutproduct-tagginginstagrammetacreator-commercereels

Pricing

freemium

Added 2026-04-23
Verified2026-04-23
Documentation

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.

ML

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.

RK

R. Kapoor

Platform Engineer · Jan 15, 2026

★★★★★

Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.

JS

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

Related Social Commerce

TikTok Shop favicon

TikTok Shop

Social Commerce

Announced

Social commerce platform built into TikTok enabling in-app product discovery, live shopping, and checkout without leaving the app.

social-commercelive-shoppingcreator-commerce
UnverifiedAgent-Ready: 40%
3.8implementation(43 signals)
freemium
Pinterest Shopping favicon

Pinterest Shopping

Social Commerce

Ecosystem

Pinterest's product discovery and shopping features enabling brands to reach high-intent shoppers through visual search, shoppable pins, and product catalogs.

social-commercevisual-discoveryproduct-pins
UnverifiedAgent-Ready: 40%
4.1implementation(42 signals)
freemium
Meta (Facebook & Instagram Shops) favicon

Meta (Facebook & Instagram Shops)

Social Commerce

Ecosystem

Meta joined the UCP Tech Council in April 2026, integrating Facebook Shops and Instagram Shopping into the open agentic commerce standard.

social-commercefacebook-shopsinstagram-shopping
UnverifiedAgent-Ready: 40%
3.9implementation(39 signals)
freemium