Skip to content
Meshi

Meshi Partner API

A predictable REST contract for partner engineering teams — create events, import attendees, trigger enrichment and matching, and read back AI-generated results, all with partner-owned IDs.

Call the Partner API directly from your own systems, or connect an AI agent (Claude, ChatGPT, Codex) to Meshi over MCP.

Auth & setup

Org-scoped bearer keys, staging vs production environments, and your first authenticated request. Get started.

Canonical flow

Create event → import attendees → enrich → match → poll to a terminal run status. Walk the flow.

Partner-owned IDs

You own event_id, session_id, and attendee_id. Event rosters also expose a narrow entity handle for pre-existing attendees. Identity model.

Errors & limits

Retry behavior, idempotency keys, rate limits, and failure handling. Errors and limits.

The Meshi Partner API lets your systems create events, import attendees, trigger enrichment and matching, and read back AI-generated match results and identity-review queues. It is designed for partner engineering teams and agentic integration workflows that need a predictable REST contract with partner-owned IDs.

Use the base URL for the current docs hostname:

Production

export MESHI_BASE="https://api.meshi.io/api/v0/partner"
export MESHI_KEY="<MESHI_PARTNER_PRODUCTION_KEY>"

Use this for live partner traffic.

Staging

export MESHI_BASE="https://api.staging.meshi.io/api/v0/partner"
export MESHI_KEY="<MESHI_PARTNER_STAGING_KEY>"

Use this while building and validating an integration.

All endpoint paths in these docs are relative to MESHI_BASE. For example, GET /auth means GET "$MESHI_BASE/auth".

The legacy /v0/partner base is still served as a transition alias. New integrations should use /api/v0/partner.

  • Create and manage partner-owned events and sessions.
  • Import attendees using IDs from your own system.
  • Trigger attendee enrichment and inspect identity-review queues.
  • Trigger matching runs and page through match scores.
  • Poll async runs to a terminal status.
  • Handle errors, rate limits, idempotent retries, and correlation IDs consistently.

Every request uses an org-scoped service-account API key:

Authorization: Bearer <MESHI_PARTNER_KEY>

Keys are issued by the Meshi team, shown once, and stored by Meshi only as hashes. Use separate keys for staging and production.

You provide stable event_id, session_id, and attendee_id values. Meshi maps them to internal records. Event roster and match responses also return entity_id so a partner can address pre-existing attendees that have no partner ID; that handle is event-bounded and accepted only by the documented side-update, match, pair, and exclusion operations.

Imports, enrichment, and matching return a run immediately. Poll GET /runs/:run_id until the run is terminal: succeeded, partial, or failed.

webhook_url can be supplied and is echoed back on run objects, but webhooks are not delivered in v0. Poll run status instead.