Discover/Bitcoin-Only API
live

Bitcoin-Only APIbitcoin-only.com

Access Bitcoin conferences, meetups, wallets, podcasts, developer tools, and privacy resources from bitcoin-only.com via a structured JSON API.

Endpoint health
verified 3d ago
get_spend_bitcoin
get_upcoming_conferences
get_past_conferences
get_books
get_meatspace_meetups
19/19 passing latest checkself-healing
Endpoints
19
Updated
26d ago

What is the Bitcoin-Only API?

The bitcoin-only.com API exposes 19 endpoints covering the full breadth of the Bitcoin-only resource directory — from upcoming and past conferences to developer tools, privacy utilities, and hardware wallets. Endpoints like get_meatspace_meetups return structured fields including country, region, city, organizer, and organizer URL, while get_wallets categorizes on-chain, lightning, custodial, and advanced storage options with descriptions and links.

Try it

No input parameters required.

api.parse.bot/scraper/dcff37aa-d941-4b53-b38e-aaefde0161cb/<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/dcff37aa-d941-4b53-b38e-aaefde0161cb/get_upcoming_conferences' \
  -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 bitcoin-only-com-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.

"""Walkthrough: Bitcoin Only SDK — explore the Bitcoin ecosystem."""
from parse_apis.bitcoin_only_api import BitcoinOnly, Country, NotFoundError

client = BitcoinOnly()

# List upcoming Bitcoin conferences with location and dates
for conf in client.conferences.list_upcoming(limit=3):
    print(conf.name, conf.location, conf.dates)

# Get all conferences (upcoming + past) in one call
all_confs = client.conferencelists.get()
print(len(all_confs.upcoming), "upcoming,", len(all_confs.past), "past conferences")

# Filter meetups by country using the Country enum
for meetup in client.meetups.list_by_country(country=Country.USA, limit=5):
    print(meetup.city, meetup.region, meetup.organizer)

# Browse Bitcoin books
book = client.books.list(limit=1).first()
if book:
    print(book.title, book.author, book.author_url)

# Check developer tools across categories
for tool in client.tools.list_dev(limit=3):
    print(tool.name, tool.category, tool.description)

# Get job listing info (redirects to external site)
try:
    job_info = client.jobinfos.get()
    print(job_info.message, job_info.redirect_url)
except NotFoundError as exc:
    print(f"Job info not available: {exc}")

print("exercised: conferences.list_upcoming / conferencelists.get / meetups.list_by_country / books.list / tools.list_dev / jobinfos.get")
All endpoints · 19 totalmissing one? ·

Get upcoming Bitcoin-only conferences. Returns a list of conferences with name, URL, location, and dates. The site is statically curated so the list reflects whatever the maintainer has published; it may include events whose dates have passed if the page hasn't been updated.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of conference objects each with name, url, location, and dates"
  },
  "sample": {
    "data": {
      "items": [
        {
          "url": "https://braiins.com/bitcoin-mining-conference-2022",
          "name": "The Bitcoin Mining Conference",
          "dates": "2022 / June / 14th-16th",
          "location": "Prague / CZ"
        }
      ]
    },
    "status": "success"
  }
}

About the Bitcoin-Only API

Conferences and Meetups

The API provides three conference endpoints: get_upcoming_conferences returns events with name, URL, location, and dates; get_past_conferences returns historical events where location and dates may be null; and get_all_conferences combines both in a single response grouped under upcoming and past arrays. For community gatherings, get_meatspace_meetups returns in-person meetup data worldwide with country, region, city, city_url, organizer, and organizer_url fields. The get_meetups_by_country endpoint accepts a country string parameter using case-insensitive substring matching, so values like 'USA', 'United Kingdom', or 'Germany' all work without exact formatting.

Learning, Media, and Tools

Several endpoints cover educational content. get_books returns books with category, title, author, and author_url. get_learning_resources covers articles, periodicals, classes, and websites. get_podcasts organizes podcasts by language, and get_videos covers tutorials and films by category. Each of these returns a name_url field linking directly to the resource. get_dev_tools surfaces libraries and developer learning resources organized by category, useful for building Bitcoin applications.

Wallets, Hardware, and Spending

get_wallets returns software wallet options segmented by category (on-chain, lightning, custodial, advanced). get_hardware_wallets covers physical devices and nodes. For the merchant side, get_spend_bitcoin lists merchants, services, stores, and games, while get_store_tools covers payment processing integrations for merchants accepting Bitcoin. get_get_bitcoin covers acquisition services including exchanges, earning platforms, and cashback rewards.

Privacy and Explorer Tools

get_privacy_tools returns CoinJoin implementations, communication tools, and informational resources — each with category, name, name_url, and description. get_explorers_dashboards covers blockchain explorers, fee estimators, and metrics dashboards. The get_jobs endpoint does not return job listings directly; it returns a redirect message pointing to bitcoinerjobs.com along with redirect_url and redirect_text fields.

Reliability & maintenanceVerified

The Bitcoin-Only API is a managed, monitored endpoint for bitcoin-only.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bitcoin-only.com 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 bitcoin-only.com 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
3d ago
Latest check
19/19 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
  • Build a Bitcoin event calendar by combining get_upcoming_conferences and get_meatspace_meetups data filtered by country.
  • Populate a wallet comparison tool using get_wallets and get_hardware_wallets with category and description fields.
  • Aggregate a Bitcoin reading list app using get_books author data and get_learning_resources article links.
  • Create a podcast directory filtered by language using get_podcasts category and name_url fields.
  • Display a developer resource hub using get_dev_tools and get_explorers_dashboards organized by category.
  • Map Bitcoin community meetup density by country using get_meatspace_meetups country and region fields.
  • Build a merchant directory for spending Bitcoin using get_spend_bitcoin category and description data.
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 bitcoin-only.com have an official developer API?+
No. Bitcoin-only.com is a curated directory site without a public developer API. This Parse API provides structured access to the data it publishes.
What does `get_meetups_by_country` return, and how does the country filter work?+
It returns an array of in-person meetup objects with country, region, city, city_url, organizer, and organizer_url fields, filtered to entries where the country field contains the query string. The match is case-insensitive and substring-based, so 'UK', 'United Kingdom', or 'kingdom' would all match the same entries.
Does the `get_jobs` endpoint return actual job listings?+
No. The bitcoin-only.com jobs page redirects to bitcoinerjobs.com. The endpoint reflects this: it returns a message, redirect_url, and redirect_text rather than job records. The API covers job redirect metadata only. You can fork it on Parse and revise to add an endpoint that queries bitcoinerjobs.com directly.
Can I filter wallets, podcasts, or books by category?+
Not directly — get_wallets, get_podcasts, and get_books each return all records with a category field included, so filtering must be done client-side on the response array. The API does not currently expose per-category query parameters for those endpoints. You can fork the API on Parse and revise it to add category-level filtering endpoints.
How current is the data, and does the API support pagination?+
The data reflects what bitcoin-only.com publishes at the time of a request. None of the 19 endpoints expose pagination parameters — all return full lists in a single response. Very large categories like get_meatspace_meetups return all worldwide records at once.
Page content last updated . Spec covers 19 endpoints from bitcoin-only.com.
Related APIs in Crypto Web3See all →
cryptonomads.org API
Discover crypto industry events, job opportunities, and hiring companies while connecting with members of the CryptoNomads community. Search and explore events, browse open positions, find coliving listings, and view detailed profiles of companies and professionals in the crypto space.
bitcoinwell.com API
Access live Bitcoin prices in CAD and USD, find Bitcoin Well ATM locations across Canada by province or city, and read the latest blog posts from Bitcoin Well. Filter ATMs by type and view detailed information about specific locations to plan your cryptocurrency transactions.
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.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
bitcointreasuries.net API
Track which companies, governments, and ETFs hold Bitcoin and monitor their portfolio sizes in real-time. Get current BTC prices, detailed entity holdings, financial metrics, and latest news across public companies, private companies, and government treasuries all in one place.
ccfddl.com API
Access computer science conference deadlines, rankings, and acceptance rates across all CCF and CORE categories. Search and filter conferences by name, rank, or research area to explore venues and submission timelines.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.