Skip to main content
POST
/
api
/
blur
/
activity
/
search
/blur/activity/search
curl --request POST \
  --url https://api.anysite.io/api/blur/activity/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 50,
  "timeout": 300,
  "event_types": []
}
'
[
  {
    "id": "<string>",
    "@type": "BlurActivity",
    "contract_address": "<string>",
    "token_id": "<string>",
    "image": "<string>",
    "event_type": "<string>",
    "price": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "from_trader": {
      "address": "<string>",
      "@type": "BlurTrader",
      "username": "<string>"
    },
    "to_trader": {
      "address": "<string>",
      "@type": "BlurTrader",
      "username": "<string>"
    },
    "created_at": "<string>",
    "transaction_hash": "<string>",
    "marketplace": "<string>",
    "maker_side": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

Collection slug (e.g. 'azuki') or its on-chain contract address

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

count
integer
required

Number of activity events to return

Required range: 1 <= x <= 100
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
event_types
enum<string>[] | null

Filter to specific event types; all event types are included when omitted

Available options:
sale,
orderCreated,
transfer

Response

Successful Response

id
string
required
@type
string
default:BlurActivity
contract_address
string | null
token_id
string | null
image
string | null
event_type
string | null
price
object
from_trader
object
to_trader
object
created_at
string | null
transaction_hash
string | null
marketplace
string | null
maker_side
string | null