Skip to main content
POST
/
api
/
magiceden
/
tokens
/
activities
/magiceden/tokens/activities
curl --request POST \
  --url https://api.anysite.io/api/magiceden/tokens/activities \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "mint": "<string>",
  "count": 2,
  "timeout": 300,
  "chain": "solana"
}
'
[
  {
    "transaction_id": "<string>",
    "@type": "MagicedenActivity",
    "type": "<string>",
    "source": "<string>",
    "collection_symbol": "<string>",
    "mint": "<string>",
    "name": "<string>",
    "image": "<string>",
    "seller": "<string>",
    "buyer": "<string>",
    "price": 123,
    "block_time": 123,
    "slot": 123,
    "token_standard": 123,
    "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
mint
string
required

Token mint address (on-chain Solana mint)

Minimum string length: 1
Example:

"C78gKpxG69rHLdfmEiP82oA4rNXQXavTEVeEkM1S2B4P"

count
integer
required

Number of activities 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
activity_type
enum<string> | null

Filter by a single activity type

Available options:
sale,
list,
delist,
bid,
cancelBid,
mint

Response

Successful Response

transaction_id
string
required
@type
string
default:MagicedenActivity
type
string | null
source
string | null
collection_symbol
string | null
mint
string | null
name
string | null
image
string | null
seller
string | null
buyer
string | null
price
number | null
block_time
integer | null
slot
integer | null
token_standard
integer | null
rarity
object