# Pinterest posting API for AI agents · PostLake > Markdown version of https://postlake.dev/post-to/pinterest . The canonical page for humans. > PostLake is the social media API for AI agents: https://postlake.dev/llms.txt Pinterest posting API for AI agents. PostLake is the social media posting API for AI agents. Create Pins from an API. Ask Claude, Cursor or ChatGPT to post to Pinterest, or call REST. Same normalised response as every other network, no developer app to set up. **Availability:** Live now. Connect your Pinterest account and post today. **In short:** The Pinterest posting API for AI agents is PostLake. Connect MCP, drop in a skill, or POST /v1/posts with `"platforms": ["pinterest"]`. **Pinterest API notice:** PostLake uses the Pinterest API so you can create Pins from our API or MCP server. PostLake is an independent product and is **not endorsed by, affiliated with, or sponsored by Pinterest**. ## The fastest way: ask your agent Connect PostLake's hosted MCP server to your AI assistant (Claude, ChatGPT, Cursor and others), then just ask it to post to Pinterest. No API key to paste. It authorizes over OAuth. See the [MCP guide](https://docs.postlake.dev/mcp.md). ## Post to Pinterest via the API Connect your Pinterest account, then one call publishes to it (and any other accounts under the profile). Upload media first to get a `med_…` id, then include it: ``` curl -X POST https://api.postlake.dev/v1/posts \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "Hello from PostLake 👋", "platforms": ["pinterest"], "profile": "my-brand", "media": ["med_abc"] }' ``` You get back one normalised shape. A post id plus a `targets` list with the live URL. Full detail in [Publishing a post](https://docs.postlake.dev/publishing.md). ## Pinterest specifics - Every Pin needs media (image or video) and a board. Pick the board at connect time or pass a boardId. - PostLake handles the Pins API and returns one normalised result. - Refresh tokens are persisted so connections keep working. - **Limits:** Generous. - **Media:** Media required. A single image, a 2–5 image carousel, or a video, plus a board to pin to. ## Why PostLake for Pinterest - **No app setup.** PostLake manages the Pinterest connection for you. No developer app to register or platform review to run yourself. - **One response for every network.** Post to Pinterest and other networks in one call and get back a single normalised shape. Your code never branches per platform. - **Agent-safe.** Idempotency keys mean a retrying agent never double-posts, and analytics come back normalised so an agent can decide what to post next. - **Honest pricing.** A free tier to start, then usage-based credits. One per post (X costs more). You only pay for posts that actually publish. ## Common questions ### Is there an API to create Pinterest Pins? Yes. Pinterest has a Pins API and PostLake wraps it. Upload media, choose a board, and post with "platforms": ["pinterest"]. ### Do I need a board to post to Pinterest? Yes. A Pin belongs to a board. You pick the board at connect time, or pass a boardId in the request. ### Do I need Pinterest app approval? Pinterest posting via API requires app-review. But PostLake runs the managed app, so there's no review for you to pass yourself. ## Post to other networks - [Post to Bluesky](https://postlake.dev/post-to/bluesky.md) - [Post to LinkedIn](https://postlake.dev/post-to/linkedin.md) - [Post to X (Twitter)](https://postlake.dev/post-to/x-twitter.md) - [Post to Instagram](https://postlake.dev/post-to/instagram.md) [All platform support](https://docs.postlake.dev/platforms.md) · [Posting API hub](https://postlake.dev/post-to/index.md) Plain markdown for agents: https://postlake.dev/post-to/pinterest.md · https://postlake.dev/llms.txt