Skip to main content
POST
/
v1
/
dev
/
user
/
conversations
Create conversation from text
curl --request POST \
  --url https://api.omi.me/v1/dev/user/conversations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "Meeting notes: Discussed Q1 goals. Action item: prepare budget by Friday.",
  "text_source": "other_text",
  "text_source_spec": "meeting_notes",
  "started_at": "2025-12-06T14:00:00+00:00",
  "language": "en"
}
'
{
  "id": "conv_456",
  "status": "completed",
  "discarded": false
}

Authorizations

Authorization
string
header
required

Developer API key. Get one from Settings → Developer → Create Key in the Omi app. Keys are prefixed with omi_dev_.

Body

application/json
text
string
required

The conversation text/transcript.

Required string length: 1 - 100000
text_source
enum<string>
default:other_text

Source type.

Available options:
audio_transcript,
message,
other_text
text_source_spec
string

Additional source info (e.g. email, slack, whatsapp).

started_at
string<date-time>

When conversation started (defaults to now).

finished_at
string<date-time>

When conversation finished.

language
string
default:en

Language code.

geolocation
object

Response

Conversation created.

id
string

Conversation ID.

status
string

Processing status.

discarded
boolean

Whether the conversation was discarded.