# Spectranet Pin Lookup

## Fetch Spectranet Pins

<mark style="color:blue;">`GET`</mark> `https://sagecloud.ng/api/v2/internet/data/spectranet/lookup`

This endpoint allows you to get spectranet pins.

#### Headers

| Name           | Type   | Description             |
| -------------- | ------ | ----------------------- |
| Authentication | string | Check the Headers page. |

{% tabs %}
{% tab title="200 Pins successfully retrieved." %}

```
{
    "success": true,
    "data": {
        "status": "success",
        "message": "Successful",
        "code": 200,
        "data": [
            {
                "amount": 500,
                "available": 793,
                "description": "₦500"
            },
            {
                "amount": 1000,
                "available": 803,
                "description": "₦1000"
            },
            {
                "amount": 2000,
                "available": 829,
                "description": "₦2000"
            },
            {
                "amount": 5000,
                "available": 834,
                "description": "₦5000"
            },
            {
                "amount": 7000,
                "available": 832,
                "description": "₦7000"
            },
            {
                "amount": 10000,
                "available": 832,
                "description": "₦10000"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
