# Find Special Ranges UTXO

## Find special sats in the given UTXOs

<mark style="color:green;">`POST`</mark> `https://api.ordinalsbot.com/satscanner/find-special-ranges-utxo`

#### Headers

| Name                                        | Type   | Description |
| ------------------------------------------- | ------ | ----------- |
| x-api-key<mark style="color:red;">\*</mark> | String | API Key     |

#### Request Body

| Name                                    | Type      | Description            |
| --------------------------------------- | --------- | ---------------------- |
| utxos<mark style="color:red;">\*</mark> | String\[] | Array of utxos to scan |

{% tabs %}
{% tab title="200: OK The ranges and special ranges for the address" %}

```javascript
{
    "result": {
        "inscriptions": [
            {
                "output": "5c647ddc974d3f116093995a1cf8ac8ade10ed4f255bb3c4baf6435c5fb073d5:2",
                "inscriptions": [
                    "8ba8e1c2cf89413d94d6423032495c879435b2cde2c9fa1580d7f8dd7949e6a8i0"
                ]
            }
        ],
        "ranges": [
            {
                "output": "5c647ddc974d3f116093995a1cf8ac8ade10ed4f255bb3c4baf6435c5fb073d5:2",
                "start": 1183905505897907,
                "end": 1183905505898453,
                "size": 546,
                "offset": 0,
                "rarity": "common"
            }
        ],
        "specialRanges": [
            {
                "start": 229634999999999,
                "output": "5c647ddc974d3f116093995a1cf8ac8ade10ed4f255bb3c4baf6435c5fb073d5:2",
                "size": 1,
                "offset": 0,
                "satributes": [ "black" ]
            }
      ]
    }
}
```

{% endtab %}
{% endtabs %}
