# Linq: an iMessage, RCS, SMS and voice API for AI agents, with its limits, webhooks and retention modes

slug: linq · https://miscsubjects.com/a/linq · category: reference · tags: imessage, messaging-api, linq, vendor-reference · updated 2026-09-22T05:10:36.095Z

Linq is an iMessage, RCS, SMS and voice API sold to teams that build AI agents, run on Apple hardware that Linq operates. Linq's own line on 2026-09-21: "Linq is the conversational layer for AI agents — a single API for iMessage, RCS, and SMS (with Voice) over real Apple infrastructure." The same company sold digital business cards before this; its page written for AI assistants says "Linq once sold digital business cards. Linq has pivoted." Everything below concerns the messaging API, reached at `https://api.linqapp.com/api/partner/v3` with one header, `Authorization: Bearer <token>`, and specified in an OpenAPI file at `https://cdn.linqapp.com/openapi/linq-api-v3.yaml`.

Three terms carry the rest. A **line** is one phone number provisioned on the account by a Linq representative; sandbox accounts get one on self-serve signup. A **handle** is a phone number in E.164 form or an email address. A **part** is one piece of a message: text, an attachment, a link, a sticker, or an iMessage app card, and a message is a list of parts.

## What the API sends

Linq's capability table names unified sending across iMessage, RCS and SMS with automatic or explicit protocol selection; attachments up to 100 MB; group chats with participant add, remove and leave; threaded replies; tapbacks plus any Unicode emoji as reactions; message effects; typing indicators sent and received; polls; chat backgrounds in color, animated or photo form; and webhooks. Its documentation, read in full on 2026-09-21, adds voice memos through a dedicated endpoint, stickers in three forms (peeled onto a message, sent alone, or placed inline in text), mentions of one participant in a group, message editing by `PATCH` with a `message.edited` event, rich link previews, iMessage app messages, "experiences" that render as native cards inside Linq's own iMessage app, location sharing, contact cards, blocked handles, capability checks for iMessage and RCS, and payment links plus an "Agentcard" flow in which an agent pays on a customer's behalf with a one-time card.

Effects are an object, `"effect": { "type": "screen", "name": "confetti" }`, with 11 screen effects and 4 bubble effects listed. Chat health is scored per chat as HEALTHY, AT_RISK, CRITICAL or OPTED_OUT, and a beta phone-reputation score exists per line.

## Limits

Linq's rate-limit page states: "We recommend limiting message volume to a combined total of up to **7,000 inbound and outbound messages per day per line**." There is no hard daily cap outside sandbox accounts, which get 100 messages a day. A hard limit applies per pair: 30 messages per 60-second window for each sender–recipient pair, returning 429 with error code 1007 and a `Retry-After` header. Capability checks run at most once per 10 seconds. Every error body carries a numeric `code`, a `message`, the HTTP `status`, a `doc_url` and a `trace_id`; the code list on 2026-09-21 runs from 1001 (missing field) through 2031 (no active location share) into 3xxx server and 4xxx delivery errors.

## Webhooks

An envelope carries `api_version`, `webhook_version` (`2025-01-01` or `2026-02-03`), `event_type`, `event_id`, `created_at`, `trace_id`, `partner_id` and `data`. Message events are `message.sent`, `message.received`, `message.delivered`, `message.read`, `message.failed` and `message.edited`; Linq's comparison page counts 44 event types in all, across messages, chats, groups, reactions, typing, payments and location. Signatures follow the Standard Webhooks scheme, and the docs tell the receiver to re-fetch the resource after verifying rather than trust the payload alone.

## Zero-day retention

Linq offers a mode in which message content is never written to its database. Its definition: "Zero-day retention means message content is retained for zero days — it is never persisted past the moment it's needed". Under that mode outbound content appears once, in the synchronous response to the send, and inbound content appears once, in the first webhook about it; later webhooks and any later `GET` return empty content, while poll votes, reactions and attachment metadata still persist. The page's instruction to integrators is to "capture content when you first see it".

## Plans and prices

Linq publishes no price. Its pricing page on 2026-09-21 offers two doors: Sandbox, free, "Send your first text within minutes", email verification only; and Enterprise, "Talk to an Expert", with a claim of "1,000+ teams", SSO, in-house workflow builders and "not pay-per-message" billing. Rival pages report set-up fees and per-line prices for Linq, and Linq itself confirms none of them. Linq's own scale claims: 200 million or more messages sent, 60 million or more a month, a contractual 99.95% uptime commitment, and median latency under 120 ms.

## Compliance as Linq states it

Linq describes itself as "the only SOC 2 Type II iMessage API" and publishes a trust center listing 70 monitored controls, audit and penetration-test reports on request, and its subprocessors. Message content is described as encrypted and inaccessible to Linq. Like every service in this category, Linq is not an Apple program; its rate limits exist, in its own words, "to protect Apple's ecosystem and prevent automated feedback loops between bots".

## Developer packaging

SDKs for TypeScript, Python and Go; a command-line tool; a plugin for Claude Code and Cursor that gives the agent a `search_docs` tool and an `execute` tool against the account; a Model Context Protocol package, `@linqapp/sdk-mcp`, that lets Claude send and receive iMessages, react, edit, and send files; an `llms.txt` index and a 2.4 MB `llms-full.txt`; and a Vercel Chat SDK adapter. Idempotency is a body field, `idempotency_key`, rather than a header.

## Sources

1. Linq llms.txt — https://linqapp.com/llms.txt
2. Linq Rate Limits — https://docs.linqapp.com/channel/imessage/guides/platform/rate-limits/
3. Linq Zero-Day Retention — https://docs.linqapp.com/channel/imessage/guides/platform/zero-day-retention/
4. Linq AI context page — https://linqapp.com/s/ai-instructions.md
5. Linq pricing — https://linqapp.com/s/pricing
6. Linq vs Blooio (Linq's page) — https://linqapp.com/s/linq-vs-blooio

