List Section Pins
Returns one bounded page of public section pins plus pagination.next_cursor. Keep requesting with cursor until pagination.has_more is false. Designed for large-section backups and resumable collection.
pinterest.section-pins.list
/execute
Shared execution endpoint
Input parameters
cursor
string
optional
Opaque continuation cursor returned by the previous page
limit
integer
optional
Maximum pins returned in this page
25
url
string
required
Full public Pinterest section URL
https://www.pinterest.com/ashishbishnoi18/myboard/mysection/
Response
Successful output is returned in results[0].data. Raw platform output is
intentionally open-ended and may evolve with the upstream source.
Illustrative output fields
Derived from the sample above for orientation only. These observed fields are not a fixed response schema.
| Path | Observed type | Example |
|---|---|---|
items |
array |
1 items |
items |
array |
1 items |
outcome |
object |
2 fields |
outcome.reason |
string |
page_finished |
outcome.status |
string |
complete |
pagination |
object |
2 fields |
pagination.has_more |
boolean |
false |
pagination.retrieved_total |
integer |
6 |
section |
object |
5 fields |
section.board_id |
string |
64950488315410023 |
section.id |
string |
5469010104714075890 |
section.pin_count |
integer |
6 |
section.slug |
string |
mysection |
section.title |
string |
mysection |
Execution behavior
A 200 response completed inline. A 202 response was queued; poll
GET /jobs/:id until the job reaches completed or
failed.