## Get Lookup Info

**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

- `data: object { freeLimit, used }`

  - `freeLimit: number`

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

  - `used: number`

    The number of lookups consumed in the current billing period.

- `message: string`

- `status: "success" or "error"`

  - `"success"`

  - `"error"`

### Example

```http
curl https://api.postgrid.com/v1/addver/ \
    -H "X-API-Key: $POSTGRID_ADDRESS_VERIFICATION_API_KEY"
```

#### Response

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