Bitmap

Endpoints related to Bitmap.

Endpoints' API-Key-Tier availabilities are written for each endpoint.

To use on testnet4/signet, use your current api-key and send the request to https://testnet.api.bestinslot.xyz / https://signet_api.bestinslot.xyz

Get Bitmap Holders

Included in: Basic, Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/holders

Returns an array with holder information. Each entry has a wallet address and collected inscription ids.

Sample query: https://api.bestinslot.xyz/v3/bitmap/holders?sort_by=wallet_addr&order=asc&offset=0&count=100

Query Parameters

Name
Type
Description

sort_by

string

(optional) "wallet_addr"

order

string

(optional) "asc", "desc"

offset*

int

(optional) 0 <= offset

count*

int

(optional) 20 <= count <= 100

{
    "data": [
        {
            "wallet": "12ufzRLA89ZyLPTe6HCUnVGRtdNfr8tYXp",
            "inscription_ids": [
                "5e7989591908aa5e1874545518b4b2d9ccfbde83f40a94340cc5fbd5d923b981i0",
                "b5eced1df647a5a55c2753d44dfb8976a5a7c6c0035f68c76c6a96bb60e14700i0",
                "689616aeeb568d3e93fae34563b2134b81fa46ebc58b32b45b26332b945f8569i0",
                "c7117a8e524b657b3f37b9d42d7fce5d62a920307e569448131cd3ab9cb2cb43i0",
                "d9875cf906b853a3204270bbc8f53a8054716ba3ffdc2da4d2a87e77631c473di0"
            ]
        },
        ...
    ],
    "block_height": 795035
}

Get Bitmap Inscriptions

Included in: Basic, Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/inscriptions

Returns ordered list of bitmap inscriptions.

Sample query: https://api.bestinslot.xyz/v3/bitmap/inscriptions?sort_by=inscr_num&order=asc&offset=100&count=100

NOTE: last_sale_price is only available on Pro Tier.

Query Parameters

Name
Type
Description

sort_by*

string

inscr_num

order*

string

asc, desc

offset*

int

0 <= offset

count*

int

20 <= count <= 100

Get Bitmap Sales Information

Included in: Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/sales_info

Returns sales and volume information about bitmaps.

Sample query: https://api.bestinslot.xyz/v3/bitmap/sales_infomarketplace_type=magiceden

Query Parameters

Name
Type
Description

marketplace_type

string

Optional parameter to filter only by a given marketplace. You can find the allowed types on Constants Page.

Get Bitmap Market Information

Included in: Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/market_info

Returns market information like marketcap, listed count, floor price about bitmaps.

Sample query: https://api.bestinslot.xyz/v3/bitmap/market_info

Get Bitmap Listings

Included in: Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/listings

Returns ordered list of listings of bitmaps.

Sample query: https://api.bestinslot.xyz/v3/bitmap/listings?sort_by=min_price&order=asc&offset=0&count=100

Query Parameters

Name
Type
Description

sort_by*

string

min_price, ordswap_price, magiceden_price, ordinalswallet_price, gammaio_price, odynals_price, unisat_price, ordinalsmarket_price, okx_price

order*

string

asc, desc

offset*

int

0 <= offset <= 5k

count*

int

20 <= count <= 100

Get Bitmap Activity

Included in: Pro, Dedicated

GET https://api.bestinslot.xyz/v3/bitmap/activity

Returns ordered list of inscribes, sales and transfers of bitmaps.

NOTE: Use last_new_satpoint to continue fetching the activity from where you've left off. new_satpoint uniquely addresses a single inscription transfer, so by setting order to asc, and last_new_satpoint to the latest new_satpoint value that you've received, you can retrieve the new activities.

Sample query: https://api.bestinslot.xyz/v3/bitmap/activity?activity_filter=7&sort_by=ts&order=asc&offset=0&count=100&last_new_satpoint=cc9f10dda7c6e03637ed8205f33067f6d0b20520bb082f500ea33edd5a10ebc5:2:0

Query Parameters

Name
Type
Description

sort_by*

string

ts

order*

string

asc, desc

offset*

int

0 <= offset <= 5k

count*

int

20 <= count <= 100

activity_filter*

int

1 -> inscribed 2 -> transferred 4 -> sold combine with or operator (e.g. sold & transferred: 2 | 4 = 6)

last_new_satpoint

string

(optional) use this with offset 0 to continue from a known transfer

Last updated