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

# Get Allowlisted IPs

> Retrieve your IP allowlist record

Returns your IP allowlist record. The `ip_address` field contains all currently allowlisted IP addresses as an array.

```
GET https://api.yativo.com/api/v1/ip
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/ip' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "data": {
      "id": 1,
      "user_id": "usr_xxxxxxxxxxxxxxxx",
      "ip_address": ["203.0.113.10", "198.51.100.5"],
      "created_at": "2026-04-01T10:00:00.000000Z",
      "updated_at": "2026-04-01T12:00:00.000000Z"
    }
  }
  ```
</ResponseExample>
