Access
Analytics
Get activities
Fetches activities for a specific collection or product.
curl --request GET \
--url https://api.oneofnone.io/v1/activities \
--header 'x-api-key: <api-key>'
{
"data": [
{
"content": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": 123,
"image_id": 123,
"json": {},
"owner_address": "<string>",
"title": "<string>",
"tx_url": "<string>",
"type": "PRODUCTION",
"updated_at": "2023-11-07T05:31:56Z",
"video_id": 123,
"gallery": [
{
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>",
"order": 123,
"variants": [
"<string>"
],
"type": "<string>"
}
],
"image": {
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>"
},
"video": {
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>"
}
}
],
"pagination": {
"next": "<string>",
"prev": "<string>",
"limit": 123,
"offset": 123
}
}
Authorizations
The API key required for accessing protected routes. It should be included in the request headers as x-api-key
.
Query Parameters
The ID of the product (token) to fetch activities for.
x >= 1
The slug of the collection to fetch activities for.
The minimum date for filtering activities.
The maximum date for filtering activities.
The maximum number of items to return (1-1000).
1 <= x <= 1000
The number of items to skip before starting to collect the result set.
The sort order of the results.
asc
, desc
The field by which to order the results.
Response
PRODUCTION
, CONNECTED
, CONTRACT_DEPLOYED
, PRODUCT_DROPPED
, PRODUCT_TAPPED
, PRODUCT_REGISTERED
, PRODUCT_VAULTED
, PRODUCT_GRADED
, PRODUCT_REDEEMED
, PRODUCT_LISTED
, PRODUCT_SOLD
, ON_DISPLAY
, OWNER_POST
, CREATOR_POST
, CREATOR_UPGRADE
The gallery items related to the activity.
Alternative text for the media.
The creation timestamp of the media.
Description of the media.
The file type of the media.
The unique identifier for the media.
URL to the poster of the media.
The size of the media in bytes.
Tags associated with the media.
URL to the thumbnail of the media.
The last updated timestamp of the media.
URL to the media.
Order of the gallery item.
Variants of the gallery item.
Type of the gallery item.
Alternative text for the media.
The creation timestamp of the media.
Description of the media.
The file type of the media.
The unique identifier for the media.
URL to the poster of the media.
The size of the media in bytes.
Tags associated with the media.
URL to the thumbnail of the media.
The last updated timestamp of the media.
URL to the media.
Alternative text for the media.
The creation timestamp of the media.
Description of the media.
The file type of the media.
The unique identifier for the media.
URL to the poster of the media.
The size of the media in bytes.
Tags associated with the media.
URL to the thumbnail of the media.
The last updated timestamp of the media.
URL to the media.
curl --request GET \
--url https://api.oneofnone.io/v1/activities \
--header 'x-api-key: <api-key>'
{
"data": [
{
"content": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": 123,
"image_id": 123,
"json": {},
"owner_address": "<string>",
"title": "<string>",
"tx_url": "<string>",
"type": "PRODUCTION",
"updated_at": "2023-11-07T05:31:56Z",
"video_id": 123,
"gallery": [
{
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>",
"order": 123,
"variants": [
"<string>"
],
"type": "<string>"
}
],
"image": {
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>"
},
"video": {
"alt": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"file_type": "<string>",
"id": 123,
"poster_url": "<string>",
"size": 123,
"tags": [
"<string>"
],
"thumbnail_url": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>"
}
}
],
"pagination": {
"next": "<string>",
"prev": "<string>",
"limit": 123,
"offset": 123
}
}