# Get Map Blips

{% hint style="warning" %}
This API endpoint requires the **pro** version of Sonoran CAD or higher.\
For more information, see our [pricing ](https://docs.sonoransoftware.com/cad/pricing/faq)page.
{% endhint %}

This framework export handles the [Get Blips API endpoint](https://docs.sonoransoftware.com/cad/api-integration/api-endpoints/emergency/custom-blips/get-map-blips).

```javascript
function getBlips(cb) {
    var data = [{
        ["serverId"]: GetConvar("sonoran_serverId", 1)
    }];
    exports["sonorancad"].performApiRequest(data, "GET_BLIPS", function (res) {
        if (cb !== null) {
            cb(res);
        }
    });
}
```

### Parameters

| Property | Type     | Description       |
| -------- | -------- | ----------------- |
| `cb`     | Function | Callback function |
