Skip to main content
POST
/
api
/
magiceden
/
wallets
/
tokens
/magiceden/wallets/tokens
curl --request POST \
  --url https://api.anysite.io/api/magiceden/wallets/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "count": 2,
  "timeout": 300,
  "chain": "solana"
}
'
[
  {
    "mint": "<string>",
    "@type": "MagicedenToken",
    "name": "<string>",
    "image": "<string>",
    "animation_url": "<string>",
    "media_category": "<string>",
    "collection_symbol": "<string>",
    "collection_name": "<string>",
    "owner": "<string>",
    "price": 123,
    "listing_type": "<string>",
    "is_listed": false,
    "listing_updated_at": "<string>",
    "last_sale_price": 123,
    "seller_fee_basis_points": 123,
    "token_standard": 123,
    "supply": 123,
    "is_tradeable": false,
    "is_frozen": false,
    "update_authority": "<string>",
    "escrow_pubkey": "<string>",
    "external_url": "<string>",
    "attributes": [],
    "creators": [],
    "rarity": {
      "@type": "MagicedenRarity",
      "moonrank": 123,
      "howrare": 123,
      "me_instant": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Wallet address (on-chain Solana account)

Minimum string length: 1
Example:

"4QZKsNk1ucKqy8LXUGu9TBs76abXMCgRWMNHUPf6LLjC"

count
integer
required

Number of tokens to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
chain
enum<string>
default:solana

Blockchain

Available options:
solana

Response

Successful Response

mint
string
required
@type
string
default:MagicedenToken
name
string | null
image
string | null
animation_url
string | null
media_category
string | null
collection_symbol
string | null
collection_name
string | null
owner
string | null
price
number | null
listing_type
string | null
is_listed
boolean
default:false
listing_updated_at
string | null
last_sale_price
number | null
seller_fee_basis_points
integer | null
token_standard
integer | null
supply
integer | null
is_tradeable
boolean
default:false
is_frozen
boolean
default:false
update_authority
string | null
escrow_pubkey
string | null
external_url
string | null
attributes
object[]
creators
object[]
rarity
object