Discover/shadcnregistry API
live

shadcnregistry APIshadcnregistry.com

Access shadcn/ui registries, components, source code, install commands, and creator data via the shadcnregistry.com API. 8 endpoints for discovery and inspection.

Endpoint health
verified 3d ago
get_all_registries
get_all_component_types
inspect_external_registry
get_registry_detail
get_component_detail
7/7 passing latest checkself-healing
Endpoints
8
Updated
10d ago

What is the shadcnregistry API?

The shadcnregistry.com API gives developers programmatic access to shadcn/ui component registries through 8 endpoints covering discovery, search, and full component detail retrieval. The get_component_detail endpoint returns file-level source code, npm dependencies, install commands, and registry dependencies for any component by its namespace/name ID. You can also list creators, filter components by type, and inspect arbitrary external registry JSON files.

Try it

No input parameters required.

api.parse.bot/scraper/bf7a9ba5-264f-42cc-9f5e-fa8cbff5fcb2/<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/bf7a9ba5-264f-42cc-9f5e-fa8cbff5fcb2/get_all_registries' \
  -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 shadcnregistry-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: ShadcnRegistry SDK — discover registries, inspect components, search."""
from parse_apis.shadcnregistry_api import ShadcnRegistry, ComponentType, Slug, ComponentNotFound

client = ShadcnRegistry()

# List all registries — single-page, capped for demo
for registry in client.registries.list(limit=5):
    print(registry.name, registry.slug, registry.item_count)

# Get a specific registry by slug, then list its components
reg = client.registries.get(slug=Slug._8BITCN)
for comp in reg.components.list(limit=3):
    print(comp.id, comp.name, comp.namespace)

# Drill into one component's full details
comp_summary = reg.components.list(limit=1).first()
if comp_summary:
    try:
        detail = comp_summary.details()
        print(detail.name, detail.install_command, detail.description)
        for f in detail.files:
            print(f.path, f.type, f.target)
    except ComponentNotFound as exc:
        print(f"Component gone: {exc.component_id}")

# Search across all registries with a type filter
for result in client.searchresults.search(query="button", type=ComponentType.COMPONENT, limit=5):
    print(result.id, result.name, result.namespace, result.source)

# Inspect an external registry JSON directly
item = client.externalregistryitems.inspect(url="https://8bitcn.com/r/accordion.json")
print(item.name, item.title, item.description)

print("exercised: registries.list / registries.get / components.list / details / searchresults.search / externalregistryitems.inspect")
All endpoints · 8 totalmissing one? ·

Retrieve all listed shadcn/ui registries from the homepage. Each registry includes name, slug, description, item count, and thumbnail URL. No pagination — the full catalog is returned in a single response.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of registries returned",
    "registries": "array of registry objects with name, slug, description, itemCount, thumbnail, and url"
  },
  "sample": {
    "data": {
      "total": 84,
      "registries": [
        {
          "url": "https://shadcnregistry.com/8bitcn",
          "name": "8bitcn",
          "slug": "8bitcn",
          "itemCount": 0,
          "thumbnail": "https://shadcnregistry.com/_next/image?url=%2Fapi%2Fog%2F8bitcn&w=3840&q=75",
          "description": "A set of 8-bit styled retro components. Works with your favorite frameworks. Open Source. Open Code."
        },
        {
          "url": "https://shadcnregistry.com/aceternity",
          "name": "aceternity",
          "slug": "aceternity",
          "itemCount": 0,
          "thumbnail": "https://shadcnregistry.com/_next/image?url=%2Fapi%2Fog%2Faceternity&w=3840&q=75",
          "description": "A modern component library built with Tailwind CSS and Motion for React."
        }
      ]
    },
    "status": "success"
  }
}

About the shadcnregistry API

Registry and Component Discovery

get_all_registries returns every registry listed on shadcnregistry.com, including each registry's name, slug, description, itemCount, and thumbnail URL. From there, get_registry_detail accepts a slug parameter (e.g. 'aceternity' or 'animate-ui') and returns the registry's component list as an array of summaries with id, name, and namespace fields. These IDs are in namespace/name format and feed directly into get_component_detail.

Component Detail and Source Code

get_component_detail is the most data-dense endpoint. Pass a component_id like '@kokonutui/button' and the response includes the full files array — each entry has path, content (source code), type, and target — plus dependencies (npm packages), registryDependencies, installCommand, and a description. This makes it possible to inspect component source without visiting the site.

Search and Filtering

search_components accepts a query string and an optional type filter. The type parameter accepts values such as 'component', 'ui', 'hook', 'block', 'theme', 'page', 'lib', and 'file'. Use get_all_component_types to retrieve the authoritative list of accepted type strings at any time. Each search result includes id, name, description, type, slug, namespace, source, and accessible fields.

Creators and External Registry Inspection

get_creators returns all creators producing shadcn/ui content, with each creator's name and social links across github, youtube, and x. inspect_external_registry lets you pass any external shadcn/ui registry JSON URL and get back structured fields including files, dependencies, devDependencies, categories, schema, and title — useful for auditing third-party registries not indexed on shadcnregistry.com. get_all_components_bulk aggregates full component data across all registries and accepts an optional limit parameter to cap how many registries are processed.

Reliability & maintenanceVerified

The shadcnregistry API is a managed, monitored endpoint for shadcnregistry.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shadcnregistry.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 shadcnregistry.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
7/7 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 component search tool that filters shadcn/ui components by type using search_components with the type parameter
  • Automate extraction of component source code and file paths via get_component_detail for code generation pipelines
  • Audit npm dependencies across an entire registry using get_registry_detail followed by bulk get_component_detail calls
  • Generate install command scripts for multiple components by collecting installCommand fields in bulk
  • Populate a creator directory with GitHub, YouTube, and X profile links from get_creators
  • Inspect and validate any external shadcn/ui registry JSON file using inspect_external_registry without manual parsing
  • Compare component coverage across registries by combining get_all_registries itemCounts with per-registry component lists
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 shadcnregistry.com have an official developer API?+
shadcnregistry.com does not publish a documented public developer API. The Parse API surfaces registry, component, and creator data as structured JSON endpoints.
What does `get_component_detail` return beyond a component's name?+
It returns the full files array with each file's path, raw content (source code), type, and target; the installCommand string; dependencies (npm packages); registryDependencies; and a description. You need a component_id in namespace/name format, which you can obtain from get_registry_detail or search_components.
Can I retrieve component usage statistics or download counts?+
Not currently. The API covers structural metadata — source files, dependencies, install commands, and registry membership — but not usage or popularity metrics. You can fork this API on Parse and revise it to add an endpoint if that data becomes available on shadcnregistry.com.
Does `get_all_components_bulk` return paginated results?+
The endpoint accepts a limit integer to cap the number of registries processed, but it does not expose page/offset pagination. For large-scale collection, use limit to process registries in batches across multiple calls.
Is it possible to filter `get_all_registries` by registry category or tag?+
Not currently. get_all_registries returns all listed registries without a filter parameter; the response includes name, slug, description, itemCount, thumbnail, and url for each. You can fork this API on Parse and revise it to add filtering logic over those fields.
Page content last updated . Spec covers 8 endpoints from shadcnregistry.com.
Related APIs in Developer ToolsSee all →
reactbits.dev API
Browse and search React component libraries from React Bits, then instantly retrieve component source code, installation commands, and prop definitions. Get organized access to all available components and their categories to speed up your development workflow.
componentsearchengine.com API
Search for electronic components and access detailed specifications including pricing, datasheets, and 3D models from a comprehensive component database. Browse top trending components, retrieve in-depth metadata, and integrate real-time component information into your sourcing and design workflows.
datasheetcatalog.com API
Search for electronic component datasheets and access detailed specifications with PDF links, or browse components by manufacturer and category. Quickly find the technical information you need for any electronic component in one centralized catalog.
theshadestore.com API
Browse The Shade Store's complete catalog of window treatments by exploring categories and subcategories, view detailed product information including materials and collections, and find nearby showrooms. Search for specific products and discover current promotions all in one place.
sh.centanet.com API
Search and browse Shanghai real estate listings across second-hand homes, rentals, and new developments with detailed community information and geographic filtering. Access comprehensive property details, community profiles, and neighborhood data to find your ideal home in Shanghai.
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
mcp.so API
Discover and explore MCP servers on the mcp.so marketplace by browsing categories, searching by tags, viewing detailed server information, and checking available tools and integrations. Find top-rated servers, compare clients, and filter options to identify the perfect MCP solutions for your needs.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.