Developer docs

MentionDrop HTTP API

The v1 API exposes account-scoped market signals for agents, scripts, and automation tools. Create an API key in Settings, then send it with Authorization: Bearer <api_key> or X-API-Key.

Quick test

curl https://www.mentiondrop.com/api/v1/me \
  -H "Authorization: Bearer YOUR_API_KEY"

Endpoints

GET/api/v1/me

Validate an API key and return plan/capability metadata.

GET/api/v1/mentions

List processed mentions with filters and pagination.

GET/api/v1/mentions/:id

Fetch one mention owned by the authenticated account.

PATCH/api/v1/mentions/:id

Save relevant/not relevant feedback for a mention.

GET/api/v1/keywords

List monitored keywords.

POST/api/v1/keywords

Create a monitored keyword.

PATCH/api/v1/keywords/:id

Update keyword role, context, relevance threshold, active state, or filters.

GET/api/v1/digest

Return owned-brand, competitor, demand, and reply-worthy mention groups.

POST/api/v1/reply-drafts

Generate a reply or outreach draft for a processed mention.

Discovery