Sign in

Create pin

documented

Create a new Pin on a board or board section owned by the operation user_account.

POST /pinsPinsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.pinterest.com/v5/pins" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"board_id": "{{$board_id}}", "title": "{{$title}}", "description": "{{$description}}", "link": "{{$link}}", "media_source": {"source_type": "image_url", "url": "{{$image_url}}"}}'