OpenChat-1 API

Examples & boilerplates

Copy-paste starters for the OpenChat-1 Data API. Every example uses Authorization: Bearer sk_live_…. Get a key on Pricing after subscribe (card or USDC).

List catalog (curl)

Fetch published datasets filtered by sector.

export SECTORSEARCH_API_URL="http://127.0.0.1:3000"
export SECTORSEARCH_API_KEY="sk_live_YOUR_KEY"

curl -sS "$SECTORSEARCH_API_URL/api/v1/data/catalog?sector=finance&limit=20" \
  -H "Authorization: Bearer $SECTORSEARCH_API_KEY" \
  -H "Accept: application/json" | jq .

Env: SECTORSEARCH_API_URL, SECTORSEARCH_API_KEY. Cite results as Source: OpenChat-1 dataset <slug>.

Quickstart

  1. Subscribe at /pricing
  2. Create a key at /developers
  3. Call /api/v1/data/catalog then /datasets/:slug/records
SectorSearch API Examples & Boilerplates | OpenChat-1