Developer Resources

Build on top of Raito's Bitcoin STARK verification infrastructure. Access APIs, SDKs, and documentation to integrate trustless verification into your applications.

Coming Soon

Full developer tools and APIs are under active development. Follow our progress on GitHub and join the community!

REST API (Preview)

Access Bitcoin block data and STARK proofs programmatically

GET /api/blocks

Retrieve latest verified blocks

GET /api/block/:height

Get detailed block information

GET /api/proof/:height

Download STARK proof for block

POST /api/verify

Verify transaction inclusion

JavaScript SDK (Preview)

Integrate Raito verification into your web applications

npm install @raito/sdk

import { RaitoClient } from '@raito/sdk'

const client = new RaitoClient()

// Verify a block
const block = await client.getBlock(870000)
const isValid = await client.verifyProof(
  block.proof
)

// Check transaction inclusion
const included = await client.checkTxInclusion(
  'a1b2c3d4e5f6...'
)

Command Line Tools

Verify proofs and interact with Bitcoin data from the terminal

# Install Raito CLI
curl -sSL raito.wtf/install.sh | sh

# Verify a block proof
raito verify block_870000.proof

# Check transaction inclusion
raito check-tx a1b2c3d4e5f6...

# Sync with STARK proofs
raito sync --height 870000

Bitcoin Node Plugin

Add STARK verification capabilities to your Bitcoin node

Fast IBD

Initial Block Download in minutes

Trustless Sync

Verify without trusting peers

STARK Proofs

Cryptographic verification

Open Source

Raito is fully open source. Contribute, report issues, or build your own implementations.

View on GitHub

Documentation

Learn about STARK proofs, Bitcoin verification, and the ZeroSync protocol.

Read Docs

Community

Join the discussion, get help, and stay updated on the latest developments.

Follow Updates