TL;DR, Quick Answer
8 min readPinterest stores up to 2,000 boards per account, counting public, private and secret boards and including group boards you did not create, and up to 200,000 Pins for a personal account, counting secret Pins and your Pins on group boards. Both numbers appear in the developer documentation under the heading "Volume limits for boards and Pins". Neither appears in the consumer help centre. Pinterest also tells developers that Create Pin is only for content the user made, and points curators at Save Pin so they do not hit entity limits, but it never publishes an exemption saying saved Pins are excluded from the 200,000.
How many boards can you have on Pinterest?
Type how many boards can you have on Pinterest into a search box and you get guesses, when Pinterest itself publishes the figure in its developer documentation: 2,000 boards of any type, per account. The Pinterest developer guide on creating boards and Pins carries a section headed "Volume limits for boards and Pins" that opens with the reason, "To keep Pinterest running smoothly, there's a limit to the total number of Pins, boards, and follows we can store for accounts."
Two of those three limits get a number. The third does not.
| Entity | Published cap | What the cap counts |
|---|---|---|
| Boards | 2,000 | "boards of any type (public, private, and secret), including group boards you didn't create" |
| Pins | 200,000 | "including secret Pins and your Pins on group boards for personal accounts" |
| Follows | Not published | Named in the same sentence as boards and Pins, with no figure attached |
The follows gap is worth registering before you go further. Pinterest names three things it meters, prints two numbers, and leaves the third for you to discover by hitting it.
What counts toward the 2,000 board limit?
Every board that appears in your account counts, including boards other people made and invited you onto. The wording is deliberate: "including group boards you didn't create". That single clause is what most third-party answers miss, and it changes the arithmetic for anyone who has spent years accepting collaboration invites. Fifty group boards run by other people are fifty boards out of your 2,000.
You can see the same population through the API. GET /boards is documented as returning "a list of the boards owned by the 'operation user_account' + group boards where this account is a collaborator", which is the identical set the cap describes. Owned plus collaborated. Nothing else.
There is a matching asymmetry on the way back down. DELETE /boards/{board_id} removes a board you own. The v5 specification publishes no endpoint for leaving a group board someone else owns, so the API gives you no programmatic way to shrink that part of the count.
One more entry sneaks onto the list. If you create an ad-only Pin by setting is_removable to true without passing a board_id, Pinterest files it on an automatically created board named "Ad-only Pins", and the privacy setting on that board becomes PROTECTED. You did not ask for a board and you got one.
How many Pins can a Pinterest account have?
A personal Pinterest account holds up to 200,000 Pins, and the count includes secret Pins along with your Pins on group boards. The qualifier "for personal accounts" is doing real work in that sentence. Pinterest attaches the 200,000 figure to personal accounts specifically and publishes no separate number for business accounts anywhere on the page, so if you run a business account, the honest answer is that Pinterest has not told you.
There is no published per-board Pin limit either. The Board object returns a pin_count field, but the cap Pinterest documents is account-wide, not per board.

Do secret boards count, and what is a private board?
Secret boards count, and so do private ones, and Pinterest uses three different vocabularies for the same three settings depending on which document you open.
| Where you read it | The names used |
|---|---|
| Developer guide, volume limits section | public, private, and secret |
API privacy enum on BoardCreate and Board | PUBLIC, PROTECTED, SECRET |
Help centre article at /en/article/secret-boards | titled "Private boards" |
The BoardPrivacyFilter used by GET /boards adds two more values on top, ALL and PUBLIC_AND_SECRET, which exist for filtering rather than for setting anything.
Untangling it: the API's SECRET is what the help centre now calls a private board, the article URL still says secret-boards, and PROTECTED is the business feature Pinterest documents separately. Whichever label you meet, all three privacy values are boards, and the cap says "any type". None of them is free.
Why is the board limit in the developer docs and not the help centre?
Pinterest frames the cap as a storage question for API clients, so it lives in a developer guide under a heading about volume rather than in the consumer help centre. The help centre article "Create a board" walks through the button to click on web, iOS and Android, covers making a board secret and inviting collaborators, and never mentions a ceiling. A Pinner reading Pinterest's own documentation for Pinners has no way to learn the number.
That is the whole reason this question gets answered badly across the web. The people asking it are Pinners, the answer is published for developers, and the two audiences read different sites. If you have seen a blog post confidently give a different figure, it was almost certainly not sourced from the volume limits section, because that section says 2,000 and has for a long time.
AdaptlyPost
Start 7-Day FREE Trial
All-platform analytics
Social Inbox
AI-powered assistant
Should you use Create Pin or Save Pin?
Pinterest restricts POST /pins to content the user made, and its API reference says so in one sentence: "This function is intended solely for publishing new content created by the user. If you are interested in saving content created by others to your Pinterest boards, sometimes called 'curated content', please use our Save button instead."
The developer guide gives a second, different steer for the same situation. "We recommend using the POST Save Pin endpoint whenever you or your users are curating Pins. This will prevent users from meeting their entity limits unnecessarily."
So the reference points curators at the Save button, a web add-on, and the guide points them at POST /pins/{pin_id}/save, an API endpoint. Same problem, two answers, two pages.
Read the second quote closely, because it is easy to over-claim. Pinterest says using Save Pin prevents users from meeting their entity limits unnecessarily. It does not say saved Pins are excluded from the 200,000. The 200,000 line itself lists secret Pins and your Pins on group boards, and never mentions saves either way. The recommendation is documented, the reason is documented in general terms, and the actual accounting for a saved Pin is not.
What is documented about saving: POST /pins/{pin_id}/save accepts "any Pin type", and "any public Pin can be saved given a pin ID". The guide adds that "Pins can be saved to multiple boards", while the Pinterest entities page states that "Each Pin has a unique Pin id and can only be associated with one board or board section". Both are true if each save produces its own Pin object with its own id, which is also the reading under which saves consume the allowance rather than escaping it.
- Intended solely for content the user made
- API reference sends curators to the Save button instead
- Recommended by the developer guide for curating Pins
- Uses POST /pins/{pin_id}/save
- Said to prevent users from meeting entity limits unnecessarily
What error do you get when you hit the limit?
Pinterest publishes no error code or message for exceeding the board or Pin cap. POST /boards documents responses for 400, 401, 403, 404 and 429, plus a default error, and none of them is described as an entity-limit response. The 429 is defined as "The user has sent too many requests in a given amount of time and is being rate limited", which is a rate limit on request frequency, not a ceiling on stored objects. They are different limits and they fail differently.
The practical consequence is that you cannot detect this cap by matching on a string. You have to count.

How do you count the boards you already have?
Call GET /boards and page through it, because it returns exactly the set the cap counts. Pagination uses a bookmark cursor with page_size, which defaults to 25 and maxes at 250. An account near the ceiling is therefore at least eight pages of work.
Each Board in the response carries the fields you need to audit the number:
| Field | Use |
|---|---|
owner.username | Separates boards you created from group boards you did not |
privacy | PUBLIC, PROTECTED or SECRET, all of which count |
collaborator_count | Flags shared boards |
pin_count | Pins on that board, not the account total |
Summing pin_count across your boards will not reproduce the 200,000 figure, because that cap counts your Pins on group boards you do not own, and those boards are not all yours to enumerate.
What this means for scheduling Pinterest content
The limits belong to Pinterest and to the account, and no scheduling tool changes them. What a tool changes is how many boards and Pins you create without noticing. A bulk import that fans one campaign out across a new board per product line spends boards at a rate a person clicking through the app never would, and 2,000 arrives faster than it sounds when group boards are already eating into it.
AdaptlyPost publishes to Pinterest through its Pinterest post scheduler and reads results back through Pinterest analytics. If you are queueing at volume, bulk scheduling and the content calendar are where you can see how many Pins a campaign will actually create before it creates them, and multi-account posting sends the same item to other networks without multiplying what lands on Pinterest.
Frequently Asked Questions
Can you have unlimited boards on Pinterest?
No. Pinterest stores up to 2,000 boards per account, stated in its developer documentation under "Volume limits for boards and Pins". The limit covers boards of any type and includes group boards you did not create.
Do group boards count toward the Pinterest board limit?
Yes, including group boards you did not create. Pinterest's wording is "up to 2,000 boards of any type (public, private, and secret), including group boards you didn't create". GET /boards returns the same set, described as boards you own plus "group boards where this account is a collaborator".
AdaptlyPost
Start 7-Day FREE Trial
All-platform analytics
Social Inbox
AI-powered assistant
How many Pins can you have on Pinterest?
200,000 for a personal account, counting secret Pins and your Pins on group boards. Pinterest attaches that number to personal accounts specifically and publishes no equivalent figure for business accounts.
Do secret boards count toward the 2,000 board limit?
Yes. The cap applies to boards "of any type (public, private, and secret)". In the API the three values are PUBLIC, PROTECTED and SECRET, and Pinterest's help centre now titles its secret boards article "Private boards", but the naming differences do not create an exemption.
Does Pinterest's help centre publish the board limit?
No. The help centre article "Create a board" covers creating boards on web, iOS and Android, making one secret and adding collaborators, and gives no cap. The 2,000 and 200,000 figures appear only in the developer documentation.
Should you use Create Pin or Save Pin for someone else's content?
Save Pin. Pinterest's API reference says POST /pins "is intended solely for publishing new content created by the user" and directs curators elsewhere, while the developer guide recommends POST /pins/{pin_id}/save for curating and says it "will prevent users from meeting their entity limits unnecessarily". Pinterest does not publish a statement that saved Pins are excluded from the 200,000 count.
Can you leave a Pinterest group board you don't own?
The API gives you no way to do it. DELETE /boards/{board_id} only removes boards you own, and the v5 specification publishes no endpoint for leaving a board someone else created. That group board keeps counting toward your 2,000 until the owner removes you.
Does Pinterest ever create a board for you automatically?
In one case, yes. Creating an ad-only Pin by setting is_removable to true without a board_id gets it filed on an auto-created board named "Ad-only Pins", with privacy set to PROTECTED, a board you never asked for that still counts toward the 2,000.
What is the difference between Pinterest's 429 error and hitting the board limit?
They are unrelated. The 429 response means the user has sent too many requests in a given amount of time and is being rate limited, a limit on request frequency. Pinterest publishes no error code or message for exceeding the board or Pin cap, so hitting 2,000 boards produces no distinct failure to catch, only a count you have to check yourself.
How many pages does it take to check your Pinterest board count through the API?
At least eight for an account near the ceiling. GET /boards paginates with a bookmark cursor and a page_size that defaults to 25 and maxes at 250, so counting toward 2,000 boards means paging through results rather than reading a single number.
Put this into practice with AdaptlyPost
Was This Article Helpful?
Let us know what you think!
See us more often in Google
One click marks AdaptlyPost as a preferred source, so our articles sit higher in your Top Stories, AI Mode, and AI Overviews.
Before you go...
AdaptlyPost
Schedule your content across all platforms
Manage all your social media accounts in one place with AdaptlyPost.
All-platform analytics
Social Inbox
AI-powered assistant
Related Glossary Terms


Three Minutes, Not Sixty Seconds: How Long Can a YouTube Short Be
Most pages say 60 seconds. How long can a YouTube Short be is three minutes, and the music and copyright limits that bite well before that.


Meta's Deprecation Dates for Instagram Impressions vs Views
Dated facts on Instagram impressions vs views: Meta deprecated impressions January 21, 2025, and it stopped working on all API versions April 21, 2025.


Why the Threads Character Limit Counts Emoji as UTF-8 Bytes
The Threads character limit is 500, but Meta counts each emoji as its UTF-8 byte length, so one family emoji costs 25. Here is how to count a post correctly.
Related Articles


Rights Matching on YouTube: What Is Content ID and What a Claim Does
Answered: what is Content ID, why YouTube says only Audio Library music is copyright-safe, and how a claim redirects money instead of hitting your channel.


A Clear Answer - How to Download Images From Pinterest 2026
The three-dot menu is the fastest way to save Pinterest images, but the button vanishes on some pins. Desktop, app, and browser routes, plus reuse rules.


Create Better Tutorials With This Pinterest Idea Pins Guide
Up to 20 pages of video, images, and text in a single pin. How to create idea pins on Pinterest, and what changed since the Story Pins rebrand.

