# Find Special Ranges

## Find special sats in the given bitcoin adddress

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

#### Path Parameters

| Name                                      | Type    | Description                                                                                                                                                                                                                     |
| ----------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| address<mark style="color:red;">\*</mark> | String  | The bitcoin address                                                                                                                                                                                                             |
| excludeCommonRanges                       | Boolean | <p>If set to true the response will contain ONLY the special ranges.</p><p></p><p>This is useful when you have a popular address with too many common ranges and you are not interested in them or the response is too big.</p> |

#### Headers

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

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

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

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ordinalsbot.com/sat-scanner-api/find-special-ranges.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
