Image Pins
An image URL becomes a Pin with your title and description.
Create Pins on a board with Pinterest API v5. We take your image URL, title, and description and post the Pin — you pick the board once.
curl https://postmyish.com/api/v1/posts \
-H "Authorization: Bearer $POSTMYISH_KEY" \
-H "Content-Type: application/json" \
-d '{"caption":"12 desk setup ideas for 2026","platforms":["pinterest"]}'The official API can do this. It just makes you do a lot first. Here's what raw Pinterest publishing costs you, and what PostMyIsh absorbs.
Post types, limits, and scheduling — all through the same POST /v1/posts call, formatted the way Pinterest expects.
An image URL becomes a Pin with your title and description.
Pick the board once at connect time; every Pin lands there.
Up to 500 characters of description under the Pin.
Queue Pins with schedule_at for a steady cadence.
Every snippet hits the live API — same base URL, Bearer auth, plain JSON. Add your key and it runs.
One POST fans out to Pinterest. The response carries the id and status the moment it ships.
curl https://postmyish.com/api/v1/posts \
-H "Authorization: Bearer $POSTMYISH_KEY" \
-H "Content-Type: application/json" \
-d '{"caption":"12 desk setup ideas for 2026","platforms":["pinterest"]}'Connect Pinterest, call one endpoint, and we run the Pinterest API v5 plumbing behind it.
Link it once from the Accounts page through its official login. The credential is stored encrypted.
Send one caption and the platform id. Add schedule_at to queue it, or media for a URL.
Container flows, token refresh, rate limits, and the real post id — all on our side.
Straight talk: Pinterest apps start in trial mode with caps until reviewed. With a token and board id stored, the Pin-creation call is complete and posts for real.
One API, eleven more
Add another id to platforms and the identical call posts there too. One request already covers Pinterest, Instagram, and Facebook — no second integration.
What's real, what needs review, and what Pinterest itself requires — no hand-waving.
Yes — Pinterest API v5, the POST /v5/pins endpoint.
Yes — a Pin is fundamentally an image. Pass a public image URL as media and it becomes the Pin.
The board id you set when connecting. You can reconnect to change it.
Pinterest reviews apps to leave trial mode. The Pin-creation code works in trial for your own account; review lifts the caps.
Connect your accounts, write one caption, and be live on every feed in minutes. The free plan is genuinely free.