pinterest

Verified·Scanned 2/18/2026

This skill integrates with the Pinterest API v5 to manage pins, boards, profiles, and analytics. It requires running python3 scripts/auth.py, prompts for App ID/App Secret, and posts to https://api.pinterest.com/v5/oauth/token.

from clawhub.ai·vbef1056·7.7 KB·0 installs
Scanned from 1.0.2 at bef1056 · Transparency log ↗
$ vett add clawhub.ai/ruslanlanket/pinterest

Pinterest API v5 Skill

This skill provides tools and instructions for working with Pinterest API v5.

Quick Start

  1. Create App: Follow the guide in references/setup_guide.md to get your App ID and App Secret.
  2. Get Token: Run the authorization script:
    python3 scripts/auth.py
    
    The script will open a browser, perform OAuth authorization, and output the Access Token.

Core Features

1. Pin Management

  • Create Pin: POST /v5/pins
  • Get Pin Info: GET /v5/pins/{pin_id}
  • Delete Pin: DELETE /v5/pins/{pin_id}

2. Board Management

  • Create Board: POST /v5/boards
  • List Boards: GET /v5/boards
  • Pins on Board: GET /v5/boards/{board_id}/pins

3. Analytics

  • Account Analytics: GET /v5/user_account/analytics
  • Pin Analytics: GET /v5/pins/{pin_id}/analytics

See references/api_reference.md for a detailed list of endpoints and request examples.

Usage Examples

Creating a Pin (Heuristics)

When creating a pin, you must specify board_id and media_source. Request body example:

{
  "title": "My Awesome Pin",
  "description": "Check this out!",
  "board_id": "123456789",
  "media_source": {
    "source_type": "image_url",
    "url": "https://example.com/image.jpg"
  }
}

Getting All Boards

Use GET /v5/boards to find the required board_id before creating a pin.