Skip to main content

Get Collection Activities

This endpoint returns activity history for a collection including mints, burns, and transfers.

Endpoint

GET https://api.spacescan.io/collections/{collection_id}/activities

Parameters

ParameterTypeRequiredDefaultDescription
collection_idstringYes-The unique identifier of the collection
typestringNomintActivity type (mint/burn/transfer)
pagenumberNo1Page number for pagination
countnumberNo50Number of items per page
Free API

Use api.spacescan.io for free tier access. See our API Plans for rate limits and features.

Pro API

Use pro-api.spacescan.io with your API key in the x-api-key header. See our API Plans for details.

curl -X GET "https://pro-api.spacescan.io/collections/{collection_id}/activities?type=mint" \
-H "x-api-key: YOUR_API_KEY"

Live API Test

Request Example

Response

Failed to load API response. Please try again later.

Response Schema

FieldTypeDescription
statusstringThe status of the API request
dataarrayList of activities
paginationobjectPagination information

Activity Object

FieldTypeDescription
idstringNFT ID
namestringNFT name
preview_urlstringNFT preview URL
timestampstringActivity timestamp
typestringActivity type (mint/burn/transfer)
ownerobjectOwner details

Error Responses

HTTP Status CodeMeaning
400Bad Request -- Invalid parameters
429Too Many Requests -- Rate limit exceeded
500Internal Server Error
503Service Unavailable