📌 Tcmplate — Create Pinterest Pin via API
Main feature: automatically create TCM food therapy pins
Step 1: API Request
POST to Pinterest v5 API with pin title, image, and link
POST https://api-sandbox.pinterest.com/v5/pins
Content-Type: application/json
Authorization: *** ACCESS_TOKEN
{
"title": "Ginger Cinnamon Tea - TCM Warming Remedy",
"description": "A traditional Chinese medicine warming tea recipe",
"link": "https://tcmplate.com",
"board_id": "1089449034799831733",
"media_source": {
"source_type": "image_url",
"url": "https://images.pexels.com/photos/2559941/pexels-photo-2559941.jpeg?w=800"
}
}
Step 2: API Response
Pinterest returns 201 Created with pin ID
HTTP 201 Created
{
"id": "1089448966134428177",
"title": "Ginger Cinnamon Tea - TCM Warming Remedy",
"link": "https://tcmplate.com",
"created_at": "2026-05-26T08:00:00Z"
}