> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Save Pin

> Saves an existing pin to one of the account's boards, which is what repinning does on Pinterest

Saves an existing pin to one of the account's boards, which is what repinning does on Pinterest. Works with any public pin, not only the account's own, so it covers curating other people's content onto your boards.

|                       |                        |
| --------------------- | ---------------------- |
| **App**               | Pinterest Organic      |
| **Operation ID**      | `pinterest_save_pin`   |
| **Type**              | Action                 |
| **Connection**        | `pinterest` (required) |
| **Credits per run**   | 1                      |
| **Agent / MCP tool**  | Yes                    |
| **Requires approval** | Yes (write operation)  |

## Inputs

| Field           | Type                 | Required | Default | Description                                                                                                                                                                                                      |
| --------------- | -------------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `pin_id`        | string               | Yes      | -       | The id of the pin to save, which can be any public pin, not only the account's own. The id is the last part of a pin URL, for example 813744226420795884 in `https://www.pinterest.com/pin/813744226420795884/.` |
| `board`         | string or SelectItem | Yes      | -       | The board to save the pin to. Accepts a board id, which pinterest\_list\_boards returns.                                                                                                                         |
| `board_section` | string               | No       | -       | Optional board section id to file the saved pin under.                                                                                                                                                           |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

## Output

**Type**: `Dict`

Returns the saved copy's pin id and URL, along with the pin it was saved from.

**Fields**: `pin_id`, `pin_url`, `saved_from_pin_id`, `board_id`

**Example**:

```json theme={"dark"}
{
  "pin_id": "813744226420795999",
  "pin_url": "https://www.pinterest.com/pin/813744226420795999/",
  "saved_from_pin_id": "813744226420795884",
  "board_id": "549755885175"
}
```
