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

# The Tartini API

> What the Tartini API lets you do and how to request access.

export const Artigo = ({titulo, href, children}) => <a className="lista-artigos-item" href={href}>
    <span className="lista-artigos-texto">
      <span className="lista-artigos-nome">{titulo}</span>
      {children ? <span className="lista-artigos-desc">{children}</span> : null}
    </span>
    <svg className="lista-artigos-seta" viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">
      <path d="M9 6l6 6-6 6" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
    </svg>
  </a>;

export const Lista = ({titulo, children}) => <div className="lista-artigos">
    {titulo ? <p className="lista-artigos-titulo">{titulo}</p> : null}
    <div className="lista-artigos-itens">{children}</div>
  </div>;

The Tartini API is how your company's own system talks to the platform directly: a CRM, an e-commerce store, a billing system, or any application of yours that needs to reach Tartini without going through the screen.

***

## How to get access

API access is granted on request. To receive the technical documentation and credentials, contact the Tartini team through your account's support channel. The team confirms what your integration needs and enables access.

<Note>
  The API connection is part of the Scale and Enterprise plans. Inside Tartini, access tokens are created and revoked by the Administrator under **Configurações > Integrações > Conexão via API** (Settings > Integrations > API connection).
</Note>

***

## What already exists without the API

Before requesting access, check whether what you need is already available in the platform:

* **Webhooks**: Tartini notifies your system every time a conversation is closed, with the contact's data, the closing reason and, if you want, Tino's summary and the message history. See [Receive events in your system](/en/integracoes/webhooks).
* **Connectors**: Tino looks things up and acts in your system during the conversation, through ready-made integrations or your company's own MCP server. See [Connect external tools to the AI](/en/integracoes/conectores).
* **Webhook campaigns**: your system sends each contact Tino should reach out to. See [Trigger campaigns by webhook or by incoming message](/en/campanhas/webhook-e-inbound).

***

## Related articles

<Lista>
  <Artigo titulo="Connect your system through the API" href="/en/integracoes/conexao-via-api">Where access tokens are created and revoked.</Artigo>
  <Artigo titulo="Receive events in your system" href="/en/integracoes/webhooks">The automatic notice for every closed conversation.</Artigo>
  <Artigo titulo="Plans and what each one unlocks" href="/en/visao-geral/planos-e-recursos">Where the API connection comes in.</Artigo>
</Lista>


## Related topics

- [What Tartini is](/en/visao-geral/o-que-e-o-tartini.md)
- [Use Tartini as your system's channel](/en/integracoes/conexao-via-api.md)
- [Connect WhatsApp Business API (WABA)](/en/canais/whatsapp-business-api.md)
