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

# Framework Quickstarts

> Suggested integration flow by stack for links, conversions, and webhook receivers

# Framework Quickstarts

## Common stack flow

1. Generate auth credentials and environment config.
2. Implement link/campaign creation workflow.
3. Implement conversion tracking endpoint.
4. Implement webhook receiver with signature verification.
5. Add retries/backoff and observability.

## Suggested stack patterns

* Node/TypeScript: API client wrapper + structured logger + retry middleware
* Python: requests/session wrapper + retry policy + idempotency store
* Go: typed client + context deadlines + bounded worker pools

<Tabs>
  <Tab title="Node / TypeScript">
    Prioritize shared API client wrappers, request tracing IDs, and centralized retry middleware.
  </Tab>

  <Tab title="Python">
    Use a session client with timeout defaults, retry budget controls, and explicit exception classes.
  </Tab>

  <Tab title="Go">
    Use context deadlines for every request, typed payload models, and bounded worker pools for webhook processing.
  </Tab>
</Tabs>

## Related

* `/developer/overview`
* `/api-reference/sdk/overview`
