Sats Names

Endpoints related to sats names.

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

Sats Validity Check

Included in: Basic, Pro, Dedicated

GET https://api.bestinslot.xyz/v3/sats/validity_check

Returns validity details about a specific inscription.

Sample query: https://api.bestinslot.xyz/v3/sats/validity_check?inscription_id=8ca50ea8ed42bf9b1b2dad8df4fddb1d354769b32d240e2d5a788ee78ef2bab0i0

Query Parameters

Name
Type
Description

inscription_id*

string

inscription id

{
    "data": {
        "sats_name": "penguins.sats",
        "original_id": "b8cd5daeb8859410c4cc01d88bfa5afe6c508713882af7099b45b5d583c270d7i0",
        "is_valid": false
    },
    "block_height": 795034
}

Sats Forward Lookup

Included in: Basic, Pro, Dedicated

GET https://api.bestinslot.xyz/v3/sats/forward_lookup

Returns address from a sats name.

Sample query: https://api.bestinslot.xyz/v3/sats/forward_lookup?sats_name=penguins.sats

Query Parameters

Name
Type
Description

sats_name*

string

sats name

Sats Reverse Lookup

Included in: Basic, Pro, Dedicated

GET https://api.bestinslot.xyz/v3/sats/reverse_lookup

Returns valid sats name with minimum inscription number from a bitcoin wallet address.

Sample query: https://api.bestinslot.xyz/v3/sats/reverse_lookup?address=bc1prjglj0tcff20fe4rkwlfj6rjpgjgp3c9k252gsrwysmc7uuk9dcqm40l8k

Query Parameters

Name
Type
Description

address*

string

bitcoin wallet address

Get Sats Activity

Included in: Pro, Dedicated

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

Returns ordered list of inscribes, sales and transfers of all sats.

Sample query: https://api.bestinslot.xyz/v3/sats/activity?activity_filter=7&sort_by=ts&order=desc&offset=0&count=100

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 updated