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çaisDeutschItaliano

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

Conversation

History of the current thread.

On this page
  • conversation.search · Search the conversation
  • conversation.read · Read a message

Updated on January 1, 1970

Previous
Português
Русский
한국어
日本語
中文
हिन्दी
Open the app
Team
NextMemory

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

  • conversation.search · Search the conversation
  • conversation.read · Read a message

conversation.search · Search the conversation

Searches earlier messages of the current thread only.

FieldValue
KindRead
HTTP methodPOST /api/v1/conversation.search
MCP toolconversation_search
Scopeconversation.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice
StatusAvailable

Input

{
  query: string  // ≤ 200
  limit?: integer  // 1–10 · default 10
}

Output

{
  items: Array<{
    sequence: integer  // -9007199254740991–9007199254740991
    role: string
    excerpt: string
    createdAt: string
  }>
}

conversation.read · Read a message

Reads one full message of the current thread by sequence, in 6,000 character pages.

FieldValue
KindRead
HTTP methodPOST /api/v1/conversation.read
MCP toolconversation_read
Scopeconversation.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice
StatusAvailable

Input

{
  sequence: integer  // 1–9007199254740991
  page?: integer  // 1–9007199254740991 · default 1
}

Output

{
  sequence: integer  // -9007199254740991–9007199254740991
  role: string
  text: string
  hasMore: boolean
}