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

# Floppydata Client API

> Use cloud browsers, Web Data, proxies, and account reporting from one API.

The Floppydata Client API is for teams that need browser automation, proxy, and Web Data workflows to be predictable from code, not stitched together by hand. Start with a safe balance check, then move into the exact job you need: launch a cloud browser, search the web, fetch a page, build a proxy connection, check usage, or list static proxies.

<Card title="Run a request in API Reference" icon="play" href="/docs/api-reference/v2/endpoint/account-balances">
  Use the built-in playground on each endpoint page to send live v2 requests.
</Card>

<CardGroup cols={2}>
  <Card title="Automate a Cloud Browser" icon="browser" href="/docs/guides/cloud-browser">
    Start a session, connect with Playwright or Puppeteer, and reuse saved browser settings.
  </Card>

  <Card title="Search and Fetch Web Data" icon="file-code" href="/docs/guides/web-data">
    Discover relevant public pages, then fetch rendered HTML from the URLs you need.
  </Card>

  <Card title="Build a proxy connection" icon="plug" href="/docs/guides/rotating-proxy">
    Generate a copy-paste rotating proxy URL from dashboard-style location and rotation options.
  </Card>

  <Card title="Check usage and balances" icon="chart-line" href="/docs/guides/balances-usage">
    Read Web Data request balance, rotating traffic balance, and UTC usage rollups.
  </Card>

  <Card title="List static proxies" icon="server" href="/docs/guides/static-ips">
    Retrieve your static proxy inventory with host, port, credentials, and connection strings.
  </Card>
</CardGroup>

## Base URL

```text theme={null}
https://api.floppydata.net
```

All API requests use the `X-Api-Key` header.

```bash theme={null}
curl --request GET \
  --url "https://api.floppydata.net/v2/account/balances" \
  --header "X-Api-Key: YOUR_API_KEY"
```

## Start Here

<Steps>
  <Step title="Understand the moving parts">
    Read the [Overview](/docs/overview) if you want the product model before running commands.
  </Step>

  <Step title="Get an API key">
    Create or copy a Client API key in [API keys](https://app.floppydata.com/api-keys).
  </Step>

  <Step title="Run the quickstart">
    Follow the [Quickstart](/docs/quickstart) to make one balance request and one proxy connection request.
  </Step>

  <Step title="Pick your task">
    Use the task guides when you want a working flow; use the API Reference when you need every field and response.
  </Step>
</Steps>

<CardGroup cols={2}>
  <Card title="API Reference playground" icon="play" href="/docs/api-reference/v2/endpoint/account-balances">
    Run live requests from endpoint pages.
  </Card>

  <Card title="OpenAPI reference" icon="terminal" href="/docs/api-reference/introduction">
    View every v2 endpoint, request field, response field, and example.
  </Card>
</CardGroup>
