> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trdrs.co/llms.txt
> Use this file to discover all available pages before exploring further.

# SDKs & Tools

> Everything a builder can grab: the TypeScript client, the chart library, agent prompts, and the OpenAPI document itself.

Four ways to not write boilerplate. Every one of them is generated from, or checked against, the
same OpenAPI document the engine serves — so what you grab here cannot drift from what the API
answers.

<CardGroup cols={2}>
  <Card title="TypeScript client" icon="code" href="/partner-platform/http-clients/typescript">
    Install @trdrs/sdk — typed methods for every route, streams as async iterators, zero dependencies.
  </Card>

  <Card title="Charting" icon="chart-line" href="/chart-integration">
    Run the Quick Charts library against this API — candles, drawings, indicators, and the trade surface.
  </Card>

  <Card title="Agent prompts" icon="robot" href="/partner-platform/http-clients/agent-prompts">
    Paste-ready prompts that hand a coding agent this documentation and a task.
  </Card>

  <Card title="The OpenAPI document" icon="file-code" href="https://app.trdrs.co/docs/openapi.json">
    The served contract, as JSON. Point a generator, a mock server, or an agent at it.
  </Card>

  <Card title="CLI" icon="terminal" href="/cli">
    Every API operation as a command, generated from the served contract when it runs.
  </Card>
</CardGroup>

## Which one, when

| You are building          | Grab                                                           | Why                                                                                           |
| ------------------------- | -------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
| A server-side integration | [TypeScript SDK](/partner-platform/http-clients/typescript)    | Typed calls, zero dependencies, generated from the live contract.                             |
| A trading front end       | [Charting](/chart-integration)                                 | The chart, the order ticket, and the account manager are already built.                       |
| With a coding agent       | [Agent prompts](/partner-platform/http-clients/agent-prompts)  | The prompts carry the key setup, idempotency, and stream rules so the agent cannot skip them. |
| Your own tooling          | [The OpenAPI document](https://app.trdrs.co/docs/openapi.json) | Any language, any generator — the document is the product.                                    |
