Skip to main content

Pinterest

Base URL: https://drain.lat/api/v1/pinterest
Fetch a public Pinterest profile.
GET /api/v1/pinterest/profile/:username
username
string
required
The Pinterest username to look up.
curl "https://drain.lat/api/v1/pinterest/profile/nasa" \
  -H "x-api-key: YOUR_API_KEY"
id
string
Pinterest user ID.
username
string
Pinterest username.
displayName
string
Display name.
bio
string
Profile bio.
avatarUrl
string
Avatar image URL.
website
string
Website link.
location
string
Location.
followers
number
Follower count.
following
number
Following count.
pins
number
Total pins.
boards
number
Total boards.
monthlyViews
number
Monthly view count.
isVerified
boolean
Whether the account is verified.
profileUrl
string
Link to the Pinterest profile.
Response
{
  "id": "354330700897628702",
  "username": "nasa",
  "displayName": "NASA",
  "bio": "Explore the universe with NASA.",
  "avatarUrl": "https://i.pinimg.com/custom_covers/...",
  "website": "https://www.nasa.gov",
  "location": "Washington, D.C.",
  "followers": 1200000,
  "following": 42,
  "pins": 8430,
  "boards": 64,
  "monthlyViews": 9800000,
  "isVerified": true,
  "profileUrl": "https://www.pinterest.com/nasa/",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}