API Products Message Parser

POST /v1/message-parser
1 token / req pkg 1.0.0
typescript bash
const res = await kequtech("/v1/message-parser", {
  parameters: {
    message: "Hi, Mia mia@acme.dev. Could you help with a small site rebuild next month?",
  },
});

About

Extracts structured fields from freeform text. It identifies intent, subject, tone, named entities, contact details, and other basic metadata.

Useful for turning raw messages into predictable, machine-readable data for storage, routing, search, or general automation. No spam detection is performed here.

API reference

Parameters

message (required)
string

Provide the original message in plain text (10-1500 characters).

Response

intent (required)
string

Short purpose label (e.g. project pitch, job inquiry).

subject (required)
string

One-line subject summarizing the message.

tone (required)
string

Single adjective describing tone (e.g. friendly, urgent).

contacts (required)
[]

List of extracted contact details.

type (required)
string

Contact channel (e.g. email, phone, instagram).

value (required)
string

Canonical value.

author
string

Sender name.

role
string

Sender role.

business
string

Sender company.

website
string

Sender website.