ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pinterest

Pinterest API v5 integration. Allows creating and reading pins, managing boards, retrieving profile data and analytics. Use this skill when the user needs to automate Pinterest tasks or access account data.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/ruslanlanket/pinterest-pub
Or

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.

Metadata

Stars1133
Views1
Updated2026-02-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-ruslanlanket-pinterest-pub": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.