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

# Introduction

> One API for structured data from LinkedIn, X (Twitter), and Reddit.

## What is Bridgly?

Bridgly turns the public web into clean JSON. Point it at a LinkedIn profile, a
tweet, or a subreddit and get back structured data you can drop straight into
your app — no browsers to run, no proxies to rotate, no markup to parse.

<CardGroup cols={3}>
  <Card title="LinkedIn" icon="linkedin">
    Profiles, companies, posts, and keyword search across every vertical.
  </Card>

  <Card title="X (Twitter)" icon="x-twitter">
    Full tweet detail with reply threads, plus advanced-operator search.
  </Card>

  <Card title="Reddit" icon="reddit">
    Posts with comment trees, subreddits, users, and search.
  </Card>
</CardGroup>

## Why teams use it

<CardGroup cols={2}>
  <Card title="Consistent shapes" icon="brackets-curly">
    Every endpoint returns the same envelope with a typed `data` payload, so you
    write your parsing once.
  </Card>

  <Card title="Pay per call" icon="coins">
    A flat one credit per request. No subscriptions, no per-platform tiers, and
    credits never expire.
  </Card>

  <Card title="Nothing to operate" icon="server">
    We handle the browsers, sessions, and anti-bot handling. You send a POST.
  </Card>

  <Card title="Fast to integrate" icon="bolt">
    A single bearer token and one request shape. You can be live in minutes.
  </Card>
</CardGroup>

## How it works

<Steps>
  <Step title="Create an API key">
    Sign in to your dashboard and generate a key. It looks like `bgly_…` and is
    shown once.
  </Step>

  <Step title="Call an endpoint">
    Send a `POST` with a JSON body to any endpoint, authenticated with your key.
  </Step>

  <Step title="Use the JSON">
    Read the `data` field from the response. Each call costs one credit.
  </Step>
</Steps>

## Start here

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Make your first call in under five minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    How API keys work and how to keep them safe.
  </Card>

  <Card title="Responses & errors" icon="list-check" href="/responses">
    The response envelope, credit costs, and error codes.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference">
    Every endpoint with its schema and a live playground.
  </Card>
</CardGroup>
