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

# Solicitar recarga de celular

> Recarga pré-paga debitada do saldo da Conta Padrão.

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST 'https://api.goatpay.com.br/v1/mobile-recharge/create' \
    -H 'X-API-Key: gp_live_SUA_CHAVE' \
    -H 'Content-Type: application/json' \
    -d '{ "value": 15, "phoneNumber": "63997365512" }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "success": true,
    "message": "Recarga solicitada",
    "data": {
      "id": "rec_abc123",
      "value": 20,
      "phoneNumber": "11999999999",
      "status": "PENDING",
      "operatorName": "Vivo",
      "canBeCancelled": true
    },
    "requestId": "req_abc"
  }
  ```
</ResponseExample>

### Corpo da requisição

<ParamField body="value" type="number" required>
  Valor da recarga em reais.
</ParamField>

<ParamField body="phoneNumber" type="string" required>
  DDD + número (somente dígitos).
</ParamField>
