## Get Lookup Info

`address_verification.get_lookup_info()  -> AddressVerificationGetLookupInfoResponse`

**get** `/v1/addver/`

Returns your organization's current lookup usage and plan information.
Useful for checking how many lookups you have consumed and whether you
are on a paid plan.

### Returns

- `class AddressVerificationGetLookupInfoResponse: …`

  - `data: Data`

    - `free_limit: Optional[int]`

      The maximum number of lookups allowed in the current billing period.
      `null` indicates an unlimited plan.

    - `used: int`

      The number of lookups consumed in the current billing period.

  - `message: str`

  - `status: Literal["success", "error"]`

    - `"success"`

    - `"error"`

### Example

```python
import os
from postgrid import PostGrid

client = PostGrid(
    address_verification_api_key=os.environ.get("POSTGRID_ADDRESS_VERIFICATION_API_KEY"),  # This is the default and can be omitted
)
response = client.address_verification.get_lookup_info()
print(response.data)
```

#### Response

```json
{
  "data": {
    "freeLimit": 0,
    "used": 0
  },
  "message": "message",
  "status": "success"
}
```
