LinkedMash Developer Portal

Build with LinkedMash APIs and agent tools

Retrieve saved LinkedIn posts, manage labels and drafts, schedule content, and connect AI agents through REST, MCP, webhooks, or a first-party skill.

REST API quickstart

Create an API key, authenticate, and make your first request to the LinkedMash REST API.

Start with REST

OpenAPI 3.1 specification

Machine-readable contract for 21 public operations, including typed inputs, responses, and authentication.

View OpenAPI JSON

MCP server

Connect Claude, ChatGPT, Cursor, Codex, or another MCP client to LinkedMash tools.

Read MCP docs

Webhooks

Receive signed events when saved posts, labels, schedules, and integrations change.

Read webhook docs

Agent quickstart

Choose REST, MCP, or an agent skill based on the client and workflow you are building.

Connect an agent

LinkedMash agent skill

Install the first-party skill so compatible coding agents can use LinkedMash with less setup.

Install the skill

Quickstart

Make your first read-only request

  1. 1. Create a key. Open Integrations → API in LinkedMash.
  2. 2. Store it securely. Never expose API keys in browser code or a public repository.
  3. 3. Start with GET. Confirm authentication and inspect a small bookmark response before adding write operations.
TerminalRead only
curl 'https://api.linkedmash.com/v1/bookmarks?limit=5' \
  -H 'Authorization: Bearer <your-linkedmash-api-key>'

Authentication and environment

Use the real contract

Send the key as Authorization: Bearer <key> or in the linkedmash-api-key header.

API keys currently operate on the authenticated LinkedMash account and are not yet permission-scoped.

LinkedMash does not currently provide a separate sandbox. Use GET requests first or connect a dedicated development account before testing writes.

Machine-readable resources