Pinterest Rich Pins

Comparing Trial vs Production Features

Rich Pins Feature Comparison

Rich Pins provide enhanced pin content with additional metadata, making your pins more informative and engaging. However, there are significant differences between trial and production modes when it comes to Rich Pins functionality.

📌 Trial Mode

In trial mode, Rich Pins functionality is severely limited, preventing you from creating enhanced product pins with detailed metadata.

Limitations:

  • No Rich Pins functionality
  • No product metadata support
  • No pricing information
  • No availability status
  • No product details
  • No direct purchase links
Basic Pin

Organic Cotton T-Shirt

Eco-friendly cotton t-shirt for everyday wear.

Modern Day Hippie Couture
// Trial Mode API Call - Basic Pin Only
POST /v5/pins
{
  "board_id": "12345",
  "media_source": {
    "source_type": "image_url",
    "url": "https://example.com/image.jpg"
  },
  "title": "Organic Cotton T-Shirt",
  "description": "Eco-friendly cotton t-shirt for everyday wear.",
  "link": "https://moderndayhippieco.com/products/organic-tshirt"
}

📌 Production Mode

In production mode, you get full access to Rich Pins functionality, allowing you to create enhanced product pins with detailed metadata and shopping features.

Features:

  • Full Rich Pins functionality
  • Complete product metadata support
  • Real-time pricing information
  • Availability status
  • Detailed product specifications
  • Direct purchase links
Rich Pin
$39.99

Organic Cotton T-Shirt

Eco-friendly cotton t-shirt for everyday wear. Made from 100% organic cotton, ethically sourced and sustainably produced.

Modern Day Hippie Couture
In Stock - Free Shipping
// Production Mode API Call - Rich Pin
POST /v5/pins
{
  "board_id": "12345",
  "media_source": {
    "source_type": "image_url",
    "url": "https://example.com/image.jpg"
  },
  "title": "Organic Cotton T-Shirt",
  "description": "Eco-friendly cotton t-shirt for everyday wear.",
  "link": "https://moderndayhippieco.com/products/organic-tshirt",
  "product_data": {
    "product_link": "https://moderndayhippieco.com/products/organic-tshirt",
    "price": {
      "currency": "USD",
      "value": 39.99
    },
    "availability": "in stock",
    "product_type": "Clothing > T-shirts",
    "description": "Made from 100% organic cotton, ethically sourced and sustainably produced.",
    "shipping_info": "Free Shipping",
    "additional_product_data": {
      "material": "100% Organic Cotton",
      "color_options": ["Natural", "Black", "Green"],
      "size_options": ["XS", "S", "M", "L", "XL"]
    }
  }
}