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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.dintero.com/feedback

```json
{
  "path": "/docs/index",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Introduction

> Dintero developer documentation. Here you'll find API references, integration guides, and code examples for building on the Dintero platform.

<Card title="Using WooCommerce, Shopify, Magento, or another e-commerce platform?" icon="plug" href="/docs/integrations/plugins">
  You don't need to build a custom integration. Go to [Plugins & Integrations](/docs/integrations/plugins) for setup instructions.
</Card>

## How it works

Every Dintero integration follows the same pattern:

<Steps>
  <Step title="Get credentials">
    Create an API client in [Backoffice](https://backoffice.dintero.com/) and save your Client ID and Client Secret.
  </Step>

  <Step title="Authenticate">
    Exchange credentials for a bearer token.

    ```bash theme={null}
    curl -X POST https://api.dintero.com/v1/accounts/T12345678/auth/token \
      -u "CLIENT_ID:CLIENT_SECRET" \
      -H "Content-Type: application/json" \
      -d '{"grant_type": "client_credentials", "audience": "https://api.dintero.com/v1/accounts/T12345678"}'
    ```
  </Step>

  <Step title="Create a session">
    Send your order details to Dintero and get back a checkout URL.
  </Step>

  <Step title="Handle the result">
    Dintero calls your server with the transaction result. Capture, refund, or void as needed.
  </Step>
</Steps>

Ready to go? Jump to the [Quickstart](/docs/checkout/quickstart) for the full walkthrough.

## Resources

* [Demo Store](https://checkout.demo.dintero.com/) — try the checkout experience live
* [Postman Guide](/docs/checkout/postman-checkout-guide) — explore the APIs interactively
* [Test Data](/docs/checkout/checkout-testdata) — test cards and sandbox scenarios
* [Support](mailto:support@dintero.com) — reach the Dintero team
