Get marketplace information
Returns information about a marketplace. Requires a marketplace operator key.
This endpoint has two modes:
- No
store_id— returns the marketplace’s own identity and branding: name, logo, primary color, tagline, contact details, and whether unified checkout and commission are enabled. Use this to render the marketplace’s storefront branding. - With
?store_id=<merchant>— returns the same comprehensive store information asGET /v1/store/info, but for that one merchant within the marketplace. Useful for a single-merchant “shop page” or for giving an AI agent context about one merchant. The merchant must be active in the marketplace, otherwise404is returned. Combine withsectionsto request only specific sections of that merchant’s information.
A single-store (non-operator) key receives 403; use GET /v1/store/info instead.
Caching: Responses may be cached for up to 5 minutes.
Authorizations
API Key Authentication
Use your API key in the Authorization header:
Key Types:
Secret Keys (Server-Side Only):
- Format:
tybrite_sk_live_*(production) ortybrite_sk_test_*(sandbox) - Full read/write access to all endpoints
- ⚠️ NEVER expose in client-side code or public repositories
- Required for: write operations, authentication, payment verification, AI recommendations
Publishable Keys (Client-Safe):
- Format:
tybrite_pk_live_*(production) ortybrite_pk_test_*(sandbox) - Read-only access (GET requests only, plus POST semantic search)
- ✅ Safe for client-side JavaScript, mobile apps, and public code
- Allowed for: browsing products, search, CMS content, pricing queries
Endpoint-Specific Requirements:
- Authentication endpoints (
/v1/auth/*): Secret key required - Payment verification (
POST /v1/payments/verify): Secret key required - AI Recommendations (
POST /v1/recommendations): Secret key required - Semantic Search (
POST /v1/search): Both key types allowed (read-only operation) - All write operations: Secret key required
- All read operations: Both key types allowed
Using a publishable key for restricted operations returns 403 Forbidden.
Query Parameters
A merchant's store identifier. When provided, returns that merchant's comprehensive
store information (same shape as GET /v1/store/info). Omit to return the marketplace's
own identity and branding.
Only used together with store_id. Comma-separated list of sections of the merchant's
information to include. Omit to return all sections.
Available sections: catalog, pricing, promotions, payments, shipping,
cms, features. The store section is always included.
Response
Marketplace identity and branding (no store_id), or a merchant's comprehensive store
information (store_id provided).
- Option 1
- Option 2
Identity and branding for a marketplace as a whole, returned by GET /v1/marketplace/info when called with a marketplace operator key and no store_id. Use it to render the marketplace's own branding (name, logo, colors, contact details).
Always true — confirms this is a marketplace.
true
Always "marketplace".
marketplace Marketplace display name, or null if not set.
URL of the marketplace logo, or null if not set.
Marketplace primary brand color, or null if not set.
Short marketplace tagline, or null if not set.
Marketplace support email, or null if not set.
Description of the marketplace, or null if not set.
Marketplace website URL, or null if not set.
Marketplace contact phone number, or null if not set.
Marketplace business address, or null if not set.
Whether shoppers can check out a basket spanning multiple merchants in one payment.
Whether commission is applied to marketplace sales.

