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

# Overview

> General information about the Mindo API

# Mindo API

The Mindo API lets you manage your WhatsApp Business accounts, send template messages, and check the status of your sends.

## Base URL

```
https://api.mindosoftware.com
```

## Authentication

All requests require the `X-API-Key` header. See the [authentication guide](/en/autenticacion) for more details.

## Content-Type

All responses are in JSON format:

```
Content-Type: application/json
```

## Error format

Error responses follow this structure:

```json theme={null}
{
  "error": "Error description"
}
```

## Available endpoints

### Business accounts

| Method | Endpoint                                                                          | Description                                | Status    |
| ------ | --------------------------------------------------------------------------------- | ------------------------------------------ | --------- |
| `GET`  | [`/api/v1/business-accounts/`](/en/api-reference/cuentas-negocio/obtener-cuentas) | Get accounts, phone numbers, and templates | Available |

### Message sending

| Method | Endpoint                                                                            | Description             | Status    |
| ------ | ----------------------------------------------------------------------------------- | ----------------------- | --------- |
| `POST` | [`/api/v1/meta-templates/send/`](/en/api-reference/mensajes/enviar-mensaje)         | Send a template message | Available |
| `POST` | [`/api/v1/meta-templates/send-bulk/`](/en/api-reference/envio-masivo/enviar-masivo) | Bulk template sending   | Available |

### Bulk send tracking

| Method | Endpoint                                                                                                      | Description                        | Status    |
| ------ | ------------------------------------------------------------------------------------------------------------- | ---------------------------------- | --------- |
| `GET`  | [`/api/v1/meta-templates/bulk-sends/{bulk_send_id}/`](/en/api-reference/envio-masivo/estado-envio)            | Bulk send status and progress      | Available |
| `GET`  | [`/api/v1/meta-templates/bulk-sends/{bulk_send_id}/messages/`](/en/api-reference/envio-masivo/mensajes-envio) | Individual messages of a bulk send | Available |
| `GET`  | [`/api/v1/meta-templates/bulk-sends/`](/en/api-reference/envio-masivo/listar-envios)                          | List all bulk sends                | Available |

### Contacts

| Method | Endpoint                                                                 | Description                       | Status    |
| ------ | ------------------------------------------------------------------------ | --------------------------------- | --------- |
| `GET`  | [`/api/v1/contact-lookup/`](/en/api-reference/contactos/buscar-contacto) | Look up a contact by phone number | Available |

### Qualitative export

| Method | Endpoint                                                                                             | Description                                        | Status    |
| ------ | ---------------------------------------------------------------------------------------------------- | -------------------------------------------------- | --------- |
| `GET`  | [`/api/v1/qualitative-export/messages`](/en/api-reference/exportacion-cualitativa/exportar-mensajes) | Export messages as NDJSON for qualitative analysis | Available |

### Message lookup

| Method | Endpoint                                        | Description          | Status      |
| ------ | ----------------------------------------------- | -------------------- | ----------- |
| `GET`  | `/api/v1/meta-templates/messages/{message_id}/` | Check message status | Coming soon |
