Skip to main content
The BRIK-64 Registry API provides programmatic access to the circuit registry at registry.brik64.dev.

Base URL

https://registry.brik64.dev/v1
All endpoints are versioned under /v1. Responses are JSON.

What the API Provides

  • Catalog — Browse all 128 monomers (64 Core + 64 Extended) with signatures, families, and documentation.
  • Circuits — Publish, search, and retrieve PCD circuits from the public and private registry.
  • Certification — Submit circuits for TCE certification and verify existing certifications.
  • Artifacts — Download compiled artifacts (Rust, JS, Python, WASM) for any published circuit.
  • Authentication — Register, manage API keys, and control access to private circuits.

Free Tier

A free tier is available with generous limits:
FeatureFreePro
Catalog accessUnlimitedUnlimited
Circuit publishes10/dayUnlimited
Certifications10/dayUnlimited
Artifact downloads100/dayUnlimited
Private circuits5Unlimited

Quick Example

# Health check
curl https://registry.brik64.dev/v1/health

# List all monomers (no auth required)
curl https://registry.brik64.dev/v1/catalog

# Publish a circuit (auth required)
curl -X POST https://registry.brik64.dev/v1/circuits \
  -H "Authorization: Bearer brik_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{"name": "my-circuit", "pcd": "PC my_circuit { ... }"}'

Authentication

Get your API key and configure access.

Endpoints

Complete endpoint reference with examples.