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

# Velora API integration guide

> Velora's REST API is the most flexible way to integrate: it works with any language, any stack, any wallet.

The Velora REST API is the most flexible integration path. It works with any language, any framework, and any wallet: server-side, client-side, mobile, agents. If the SDK or Widget don't fit your stack, the API does.

## Why the API

<CardGroup cols={3}>
  <Card title="Language-agnostic" icon="globe">
    A REST API you can call from any language, any runtime.
  </Card>

  <Card title="Full surface area" icon="grid">
    Delta, Market, OTC, quotes, tokens, transactions: everything in one place.
  </Card>

  <Card title="No dependencies" icon="feather">
    No SDK to install, no version drift, just HTTP.
  </Card>
</CardGroup>

## Build by product

Each guide walks one product end to end in raw HTTP, then links to the API reference for full schemas.

<CardGroup cols={2}>
  <Card title="Delta swap" icon="bolt" href="/integrate/api/delta-swap">
    Gasless, MEV-protected swaps: quote, build, sign, submit, poll.
  </Card>

  <Card title="Market swap" icon="chart-line" href="/integrate/api/market-swap">
    Atomic on-chain swaps the user signs and broadcasts.
  </Card>

  <Card title="Limit orders" icon="bullseye" href="/integrate/api/limit-orders">
    Delta orders with a target-price constraint.
  </Card>

  <Card title="TWAP" icon="clock" href="/integrate/api/twap">
    One scheduled Delta order, settled slice-by-slice.
  </Card>

  <Card title="OTC" icon="handshake" href="/integrate/api/otc">
    Bilateral AugustusRFQ trades between named counterparties.
  </Card>
</CardGroup>

## Get started

See the **[API Reference →](/api-reference/introduction)** for endpoints, parameters, and schemas.

## Examples

Language-specific end-to-end snippets live next to the API they target:

<CardGroup cols={2}>
  <Card title="Delta API examples" icon="bolt" href="/delta/examples/typescript">
    `GET /v2/quote?mode=DELTA` for a gasless intent quote. TypeScript, Go, Python, Rust.
  </Card>

  <Card title="Market API examples" icon="chart-line" href="/market/examples/typescript">
    `GET /prices` quote for 1 ETH → USDC. TypeScript, Go, Python, Rust.
  </Card>
</CardGroup>
