Pinterest User Boards API
A user's boards with name, slug, description, pin count and cover image. Cursor-paginated. Costs 1 credit per request.
POST/api/v1/pinterest/user/boards
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonusernamestringrequiredPinterest username (optionally with a leading @) or a profile URL like https://www.pinterest.com/pinterest/.
Example: pinterest
cursorstringOpaque pagination cursor from a previous response. Omit for the first page; when the response's cursor is null the feed is exhausted.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.pinterest.user_boards("pinterest")
print(result)Response
"username": "pinterest",
"count": 130,
"cursor": null
},
"response_time": 5209
}