Finding your Pinterest Board ID is essential for using Pinterest APIs, WordPress plugins, and automation tools. This guide will show you 3 easy methods to find any Pinterest board’s unique ID number.
What is a Pinterest Board ID?
A Pinterest Board ID is a unique numerical identifier that Pinterest assigns to every board. It looks like this:
- Example:
1068760624010798538
- It’s a long number (usually 18-19 digits)
- Each board has its own unique ID
Why Do You Need Board ID?
- WordPress Pinterest Plugins – Auto-posting to specific boards
- Pinterest API Integration – Building apps and tools
- Social Media Automation – Scheduling pins to boards
- Analytics and Reporting – Tracking specific board performance
Method 1: Browser Console (Tested & Most Reliable)
This is the best method that works for any Pinterest board. (It will work only for own board, you should be logged to get correct return code)
Step 1: Open Your Pinterest Board
- Go to Pinterest.com
- Navigate to the board you want the ID for
- Make sure the board page is fully loaded
Step 2: Open Developer Tools
Windows/Linux:
- Press
F12
key, OR - Press
Ctrl + Shift + I
, OR - Right-click → “Inspect Element”
Mac:
- Press
Cmd + Option + I
, OR - Right-click → “Inspect Element”
Step 3: Go to Console Tab
- Click on the “Console” tab in the developer tools
- You’ll see a command line where you can type code
Step 4: Run the Board ID Extraction Code
Copy and paste this code into the console:
Javascript:
document.querySelectorAll('script').forEach(script => {
if(script.textContent && script.textContent.includes('board')) {
console.log('Found board data:', script.textContent.substring(0, 200));
}
});
Step 5: Press Enter
- The code will run and search for board data
- You’ll see output in the console
Step 6: Find the Board ID

Look for a long number in the output that looks like:
"board_id":"1068760624010798538"
"boardId":"1068760624010798538"
"id":"1068760624010798538"
That long number is your Board ID!
Method 2: Page Source Search
If the console method doesn’t work, try this alternative.
Step 1: Open Pinterest Board
Navigate to your Pinterest board in your browser.
Step 2: View Page Source
Windows/Linux:
- Press
Ctrl + U
, OR - Right-click → “View Page Source”
Mac:
- Press
Cmd + Option + U
, OR - Right-click → “View Page Source”
Step 3: Search for Board ID
- Press
Ctrl + F
(orCmd + F
on Mac) to open search - Search for these terms one by one:
"board_id"
"boardId"
"id":"
Step 4: Look for the Number
You’ll find something like:
"board_id":"1068760624010798538"
The number in quotes is your Board ID.
Method 3: Network Tab Inspection
This is for more advanced users who want to see the API calls.
Step 1: Open Developer Tools
- Press
F12
to open developer tools - Click on the “Network” tab
Step 2: Refresh the Board Page
- Press
Ctrl + F5
(orCmd + R
on Mac) to refresh - You’ll see network requests loading
Step 3: Filter API Calls
- In the filter box, type:
api
orv3
- Look for requests related to boards or pins
Step 4: Check Response
- Click on any board-related request
- Go to the “Response” tab
- Look for the Board ID in the JSON response
Method 4: Pinterest Business Account
If you have a Pinterest Business account, this method is simpler.
Step 1: Go to Pinterest Business
- Visit: business.pinterest.com
- Log in with your business account
Step 2: Access Analytics
- Go to “Analytics” section
- Select the board you want
Step 3: Check URL
- The Board ID might be visible in the URL
- Look for long numbers in the browser address bar
Common Board ID Formats
Pinterest Board IDs can appear in different formats:
- Numerical ID (Most Common):
- Example:
1068760624010798538
- Example:
- Username/Board-Name Format:
- Example:
saudibytes/متنوع
- Example:
username/board-name
- Example:
- URL Encoded Format:
- Example:
saudibytes/%D9%85%D8%AA%D9%86%D9%88%D8%B9
- Example:
Troubleshooting Common Issues
Console Shows No Results
- Solution: Refresh the page and try again
- Make sure JavaScript is enabled in your browser
- Try using an incognito/private browsing window
Can’t Find Developer Tools
- Chrome: Menu → More Tools → Developer Tools
- Firefox: Menu → Web Developer → Inspector
- Safari: Enable Developer menu in Preferences first
Board ID Looks Wrong
- Board IDs are usually 18-19 digits long
- Don’t include quotes or other characters
- Make sure you copied just the number
Getting Access Denied
- Some boards are private or restricted
- Make sure you have permission to view the board
- Try with your own boards first
Using Your Board ID
Once you have your Board ID, you can use it for:
WordPress Pinterest Plugins
Board ID: 1068760624010798538
Pinterest API Calls
javascript
const boardId = "1068760624010798538";
Automation Tools
Most tools will ask for either:
- The numerical Board ID, OR
- The username/board-name format
Tips for Success
- Use Your Own Boards First – Practice with boards you own
- Copy the Exact Number – Don’t include quotes or spaces
- Keep IDs Safe – Store them securely for future use
- Test Before Using – Verify the ID works in your application
- Update When Needed – Board IDs don’t change, but board names can
Example: Complete Process
Let’s walk through finding the Board ID for a sample board:
Board URL: https://www.pinterest.com/saudibytes/recipes/
- Open the URL in your browser
- Press F12 to open developer tools
- Click Console tab
- Paste the extraction code and press Enter
- Look for output like:
"board_id":"1234567890123456789"
- Copy the number:
1234567890123456789
- Use in your application
Security Note
- Don’t share Board IDs publicly unless the board is public
- Keep your Pinterest access tokens private
- Use Board IDs only for legitimate purposes
- Respect Pinterest’s Terms of Service
Conclusion
Finding Pinterest Board IDs is straightforward once you know the right method. The browser console method works best for most users and boards. Remember to:
- Use the exact numerical ID
- Test your ID before implementation
- Keep your credentials secure
- Follow Pinterest’s guidelines
With these methods, you can easily find Board IDs for Pinterest integrations, WordPress plugins, and automation tools.
Need Help?
If you’re still having trouble:
- Try the console method with your own boards first
- Make sure JavaScript is enabled
- Check if the board is public and accessible
- Contact your plugin or tool developer for specific format requirements