Skip to main content
GET
Get marketplace information

Authorizations

Authorization
string
header
required

API Key Authentication

Use your API key in the Authorization header:

Key Types:

Secret Keys (Server-Side Only):

  • Format: tybrite_sk_live_* (production) or tybrite_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) or tybrite_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

store_id
string<uuid>

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.

sections
string

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).

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).

marketplace
boolean
required

Always true — confirms this is a marketplace.

Example:

true

mode
enum<string>
required

Always "marketplace".

Available options:
marketplace
name
string | null

Marketplace display name, or null if not set.

logo_url
string | null

URL of the marketplace logo, or null if not set.

primary_color
string | null

Marketplace primary brand color, or null if not set.

tagline
string | null

Short marketplace tagline, or null if not set.

support_email
string | null

Marketplace support email, or null if not set.

description
string | null

Description of the marketplace, or null if not set.

website
string | null

Marketplace website URL, or null if not set.

phone
string | null

Marketplace contact phone number, or null if not set.

address
string | null

Marketplace business address, or null if not set.

unified_checkout
boolean

Whether shoppers can check out a basket spanning multiple merchants in one payment.

commission_enabled
boolean

Whether commission is applied to marketplace sales.