BitstrideBitstride

Getting Started

Deploy your first model in under 5 minutes.

Quick Start

Welcome to Bitstride. This guide walks you through making your first inference request.

Prerequisites

Make a Request

curl -X POST https://api.bitstride.xyz/v1/inference \
  -H "Authorization: Bearer $BITSTRIDE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3.1-8b",
    "input": "Explain quantum entanglement in one sentence."
  }'

Next Steps