Discover/Bitcointalk API
live

Bitcointalk APIbitcointalk.org

Access Bitcointalk forum data via API: browse board categories, read thread posts, fetch user profiles, and stream recent activity across the forum.

Endpoint health
verified 4d ago
get_board_threads
get_recent_posts
get_thread_posts
get_forum_boards
get_user_profile
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Bitcointalk API?

This API exposes 5 endpoints covering the full Bitcointalk.org forum hierarchy — from category listings to individual posts and user profiles. Use get_board_threads to pull paginated thread lists from any board by board_id, or get_thread_posts to retrieve the full post content of any discussion. Response fields include post content, author metadata, merit scores, activity levels, and timestamps, giving structured access to one of the oldest and most active Bitcoin community forums.

Try it

No input parameters required.

api.parse.bot/scraper/beb852b1-2c9f-443c-8ec3-258fa57fe6ee/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/beb852b1-2c9f-443c-8ec3-258fa57fe6ee/get_forum_boards' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bitcointalk-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.bitcointalk_scraper_api import BitcoinTalk, Category, Board, Thread, Post, UserProfile, RecentPost

client = BitcoinTalk()

# Browse the forum structure to find boards
for category in client.categories.list():
    print(category.category_name, category.category_id)
    for board in category.boards:
        print(board.board_name, board.board_id, board.post_count, board.topic_count)

# List threads from the Bitcoin Discussion board
bitcoin_board = client.board(board_id="1")
for thread in bitcoin_board.threads():
    print(thread.title, thread.topic_id, thread.starter, thread.replies, thread.views)

# Read posts in a specific thread
target_thread = client.thread(topic_id="5580919")
for post in target_thread.posts.list():
    print(post.post_id, post.author, post.author_id, post.timestamp, post.content[:80])

# Look up a user profile
profile = client.userprofiles.get(user_id="290195")
print(profile.username, profile.post_count, profile.activity, profile.merit, profile.position)

# Check recent forum-wide activity
for recent in client.recentposts.list():
    print(recent.title, recent.url, recent.meta)
All endpoints · 5 totalmissing one? ·

Retrieve the main forum index with all categories and their boards. Returns the full hierarchy of forum categories, each containing a list of boards with metadata including board name, ID, description, post count, and topic count. This is the entry point for discovering board IDs to use with get_board_threads.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "categories": "array of category objects each containing category_name, category_id, and boards list"
  },
  "sample": {
    "data": {
      "categories": [
        {
          "boards": [
            {
              "board_id": "1",
              "board_name": "Bitcoin Discussion",
              "post_count": 0,
              "description": "General discussion about the Bitcoin ecosystem.",
              "topic_count": 0
            }
          ],
          "category_id": "1",
          "category_name": "Bitcoin"
        }
      ]
    },
    "status": "success"
  }
}

About the Bitcointalk API

Forum Structure and Board Navigation

The get_forum_boards endpoint returns the complete category and board hierarchy with no required parameters. Each category object contains a category_name, category_id, and an array of boards — each with board_name, board_id, description, and post_count. These board_id values are the entry point for all thread-level queries.

Threads and Posts

get_board_threads accepts a required board_id and an optional start offset (increments of 40) for pagination. Each thread in the response includes title, topic_id, starter, starter_id, replies, views, and last_post. Pass a topic_id to get_thread_posts to retrieve the actual post content, paginated in sets of 20 via the start parameter. Each post object contains post_id, author, author_id, author_details, timestamp, and content.

User Profiles

get_user_profile accepts a user_id — available from the starter_id field in thread listings or author_id in post results. The profile response includes username, position (forum rank), post_count, activity, merit, registered, location, website, and signature. This makes it straightforward to enrich thread or post data with author context.

Recent Activity

get_recent_posts returns the 10 most recent forum-wide posts per page, paginated via start in increments of 10. Each result includes title, url, meta, and content, providing a lightweight feed of the latest activity without needing to specify a board or topic.

Reliability & maintenanceVerified

The Bitcointalk API is a managed, monitored endpoint for bitcointalk.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bitcointalk.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official bitcointalk.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor new threads in the Bitcoin Discussion board by polling get_board_threads with board_id 1.
  • Build a merit and activity leaderboard using merit, activity, and post_count from get_user_profile.
  • Archive full thread history by paginating get_thread_posts with the start offset across a long topic.
  • Track forum-wide sentiment by ingesting content fields from get_recent_posts into an NLP pipeline.
  • Enrich thread datasets with author reputation by joining starter_id to get_user_profile results.
  • Detect newly posted topics in a specific board by comparing last_post timestamps across paginated get_board_threads calls.
  • Aggregate post volume per board using post_count from the get_forum_boards category hierarchy.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Bitcointalk have an official developer API?+
No. Bitcointalk does not publish an official public API or developer documentation for programmatic access to forum data.
What does `get_thread_posts` return and how is pagination handled?+
get_thread_posts returns up to 20 posts per page for a given topic_id. Each post includes post_id, author, author_id, author_details, timestamp, and content. To paginate, increment the start parameter by 20 (e.g., 0, 20, 40). The response also echoes back the start and topic_id values used.
Does the API expose private messages, hidden boards, or login-required content?+
No. The API covers publicly visible boards, threads, posts, and user profile fields. Private boards, direct messages, and any content requiring a logged-in session are not accessible. You can fork this API on Parse and revise it to target additional public sections of the forum if needed.
Is there a search endpoint for finding threads or posts by keyword?+
Not currently. The API covers board-level thread listings, individual thread posts, user profiles, and recent posts forum-wide. You can fork it on Parse and revise to add a search endpoint targeting Bitcointalk's forum search functionality.
How fresh is the data returned by `get_recent_posts`?+
get_recent_posts reflects the forum's public recent-posts feed at the time of the request. Bitcointalk is a live forum, so results will vary between calls. There is no built-in caching TTL exposed in the response — each call fetches current data.
Page content last updated . Spec covers 5 endpoints from bitcointalk.org.
Related APIs in Crypto Web3See all →
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
threads.com API
Search for posts and users on Threads by keyword to discover content, view engagement metrics like likes and replies, and explore user profiles with their media. Find trending discussions and connect with creators all in one search experience.
archive.4plebs.org API
Search and browse archived 4chan threads, posts, and media with filters for username, tripcode, subject, and date ranges. Explore board galleries, view thread replies, and discover random threads from the 4plebs archive.
kaskus.co.id API
Search and browse Kaskus forum discussions across communities, discover trending threads, and read full post content from Indonesia's largest online forum. Find hot topics, explore community-specific conversations, and access popular communities all in one place.
alfabb.com API
Search and browse Alfa Romeo enthusiast discussions on AlfaBB Forum, finding specific threads and retrieving detailed conversation content from the community. Connect with fellow Alfa Romeo owners and access technical advice, restoration tips, and model-specific discussions all in one place.
blockchair.com API
Query Bitcoin blockchain data in real-time to check address balances, review transaction details, explore block information, and monitor network statistics. Track cryptocurrency news and compare data across multiple blockchain networks all in one place.
reddit.com API
Search Reddit posts and comments across any subreddit. Retrieve post discussions with full comment threads, search by keyword, and browse subreddit feeds by category (hot, new, top, rising) with flexible sorting and pagination.
thelayoff.com API
Monitor and search forum discussions about company layoffs, accessing post titles, content, author information, dates, and community reactions across TheLayoff.com. Browse through paginated results and dive into individual posts to read full reply threads and conversation details.