Collections
Endpoints related to Ordinals Collections.
Endpoints' API-Key-Tier availabilities are written for each endpoint.
NOTE: sub1k and sub10k meta-collection information can be retrieved by using these as slug.
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 collections
Included in: Basic, Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/collections
Returns ordered list of collections with detailed information about them.
Sample query: https://api.bestinslot.xyz/v3/collection/collections?sort_by=median_number&order=asc&offset=100&count=100
NOTE: inscription_icon_id may be a URL for some collections
NOTE: listed_count, floor_price, floor_price_ordswap, floor_price_magiceden, floor_price_ordinalswallet, floor_price_gammaio, floor_price_ordynals, floor_price_ordinalsmarket, floor_price_okx, vol_24h_in_btc, vol_7d_in_btc, sale_cnt_7d, vol_total_in_btc, sale_cnt_total, marketcap is only available on Pro Tier.
Query Parameters
sort_by*
string
supply, min_number, median_number, max_number
PRO TIER: listed_count, floor_price, floor_price_ordswap, floor_price_magiceden, floor_price_ordinalswallet, floor_price_gammaio, floor_price_ordynals, floor_price_ordinalsmarket, floor_price_unisat, floor_price_okx, vol_24h_in_btc, vol_7d_in_btc, sale_cnt_7d, vol_total_in_btc, sale_cnt_total, marketcap
order*
string
asc, desc
offset*
int
0 <= offset
count*
int
20 <= count <= 100
Get Collection Information
Included in: Basic, Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/info
Returns detailed information about a specific collection.
Sample query: https://api.bestinslot.xyz/v3/collection/info?slug=degods
NOTE: inscription_icon_id may be a link for some collections
Query Parameters
slug*
string
Collection slug
Get Collection Holders
Included in: Basic, Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/holders
Returns an array with holder information. Each entry has a wallet address and collected inscription ids.
Sample query: https://api.bestinslot.xyz/v3/collection/holders?slug=degods https://api.bestinslot.xyz/v3/collection/holders?slug=degods&sort_by=wallet_addr&order=asc&offset=0&count=100
Query Parameters
slug*
string
Collection slug
sort_by
string
(optional) "wallet_addr"
order
string
(optional) "asc", "desc"
offset
int
(optional) 0 <= offset
count
int
(optional) 20 <= count <= 100
Get Collection Inscriptions
Included in: Basic, Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/inscriptions
Returns ordered list of inscriptions of a specific collection.
Sample query: https://api.bestinslot.xyz/v3/collection/inscriptions?slug=bitcoin-frogs&sort_by=inscr_num&order=asc&offset=100&count=100
NOTE: last_sale_price is only available on Pro Tier.
Query Parameters
sort_by*
string
inscr_num
order*
string
asc, desc
offset*
int
0 <= offset
count*
int
20 <= count <= 100
slug*
string
collection slug
Get Collection Sales Information
Included in: Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/sales_info
Returns sales and volume information about a specific collection.
Sample query: https://api.bestinslot.xyz/v3/collection/sales_info?slug=bitcoin-frogs&marketplace_type=magiceden
Query Parameters
slug*
string
Collection slug
marketplace_type
string
Optional parameter to filter only by a given marketplace. You can find the allowed types on Constants Page.
Get Collection Market Information
Included in: Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/market_info
Returns market information like marketcap, listed count, floor price about a specific collection.
Sample query: https://api.bestinslot.xyz/v3/collection/market_info?slug=omb
Query Parameters
slug*
string
Collection slug
Get Collection Listings
Included in: Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/listings
Returns ordered list of listings of a specific collection.
Sample query: https://api.bestinslot.xyz/v3/collection/listings?slug=bitcoin-frogs&sort_by=min_price&order=asc&offset=0&count=100
Query Parameters
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
slug*
string
collection slug
Get Collection Activity
Included in: Pro, Dedicated
GET
https://api.bestinslot.xyz/v3/collection/activity
Returns ordered list of inscribes, sales and transfers of a specific collection.
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/collection/activity?slug=degods&activity_filter=7&sort_by=ts&order=asc&offset=0&count=100&last_new_satpoint=32b63c4844db4f704a8df0cf27fcf6ee966a716ea5410e598fe40734b1a7027f:1:0
Query Parameters
sort_by*
string
ts
order*
string
asc, desc
offset*
int
0 <= offset <= 5k
count*
int
20 <= count <= 100
slug*
string
collection slug
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