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

# Get Details of Campaign

> Endpoint GET /v1/campaigns/ID_CAMPAIGN/details

`GET` `/v1/campaigns/ID_CAMPAIGN/details`

## Autenticacion

Este endpoint requiere tu token de API. Incluyelo en el body como `token` o como query param `token`/`api-token`. Ve [Autenticacion](/getting-started/authentication) para mas detalles.

## Ejemplo de request

```bash theme={null}
curl -X GET "https://api.shimli.app/v1/campaigns/ID_CAMPAIGN/details" \
  -H "Content-Type: application/json"
```

## Respuesta

```json title="200 OK" theme={null}
{
  "statusCode": 200,
  "body": {
    "err": false
  }
}
```
