Generate your own client

If your language doesn't have an official SDK, OpenAPI Generator works well:

npx @openapitools/openapi-generator-cli generate \
  -i https://api.hypedata.io/v1/openapi.json \
  -g {language} \                # java, csharp, kotlin, swift, dart, …
  -o ./hypedata-client

Heads up: generated clients won't automatically handle our retry headers, idempotency keys, or stream resume. Wrap the generated client with a thin layer that does — or use a community SDK from the awesome list.