Fetch a public Pinterest pin by URL.
Endpoint
/v1/pinterest/pins
Query
Link to the Pinterest pin.
When true, returns a smaller response with fewer fields.
const response = await fetch( "https://api.socialfetch.dev/v1/pinterest/pins?url=https://www.pinterest.com/pin/1124351863225567517/", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);