Privacy and analytics

We use necessary technical cookies and, only with your consent, analytics and marketing pixels to improve the website and measure campaigns.

Privacy policyCookie policy
Docs
English
EspañolEnglishFrançaisDeutschItalianoPortuguês

Getting started

  • What is Nömad?
  • Getting started with Nömad
  • Create your brand and complete the Genome
  • Invite your team
  • Glossary

Brand OS

  • What is inside Brand OS
  • What is the Genome?
  • Who is Nödo?
  • What does a Brand Manager do?
  • Brand Kit and Library
  • Posts and calendar
  • Connections
  • Meetings

Work

  • Work and tasks
  • Ordering work
  • Following, reviewing and approving deliveries
  • Custom quotes
  • Yes, there are humans behind it

Account and billing

  • Plans and pricing
  • Billing and payments
  • Roles and permissions
  • Workspaces and multiple brands
  • Languages, apps and data

Help

  • How to get help

API

  • Brand API
    • Permissions and roles
    • Brand
    • Genome
    • Brand Kit
    • Library
    • Works
    • Calendar
    • Connections
    • Publishing
    • Inbox
    • Team
    • Conversation
    • Memory
    • Questions
    • Media
    • Store
    • Plan
    • Orders
    • Activity

MCP

  • MCP server

Connectors

  • Brand connectors

Nödo and agents

  • Nödo in the brand
API/Brand API
Reference1 min read

Store

Product catalog, no prices.

On this page
  • store.products.search · Search the Store
  • store.products.get · View a product

Updated on January 1, 1970

Previous
Русский
한국어
日本語
中文
हिन्दी
Open the app
Media
NextPlan

In this section

  • Permissions and roles
  • Brand
  • Genome
  • Brand Kit
  • Library
  • Works
  • Calendar
  • Connections
Can't find what you need? Write to usWrite to usGo to the app
© 2026 Nömad · Nömad documentationLinkedInInstagramFacebookTikTokYouTubeX
Go to nomad.oooBack to top

On this page

  • store.products.search · Search the Store
  • store.products.get · View a product

Read-only in every door.

store.products.search · Search the Store

Store products in the caller language, flagging whether each is included in the brand plan. Never returns prices or payment ids; send people to the product page to buy.

FieldValue
KindRead
HTTP methodPOST /api/v1/store.products.search
MCP toolstore_products_search
Scopestore.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetcarousel

Input

{
  query?: string  // ≤ 200
  category?: string  // ≤ 60
  cursor?: string  // ≤ 512 · Opaque cursor from a previous `nextCursor`.
  limit?: integer  // 1–50 · default 20
}

Output

{
  items: Array<{
    slug: string
    name: string
    summary: string | null
    category: string | null
    includedInPlan: boolean
    url: string  // uri · Store page inside the app.
  }>
  nextCursor: string | null
}

store.products.get · View a product

One product: what it includes, its steps and typical timing. No prices.

FieldValue
KindRead
HTTP methodPOST /api/v1/store.products.get
MCP toolstore_products_get
Scopestore.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetrecord

Input

{
  slug: string  // ≤ 120
}

Output

{
  slug: string
  name: string
  summary: string | null
  category: string | null
  includedInPlan: boolean
  url: string  // uri · Store page inside the app.
  description: string | null
  steps: string[]
  typicalDays: integer | null
}