Number of Posts over Time

Retrieve the number of social posts per minute for a token over a specified time range.

Note: Social data collection begins only after a token has migrated from a launchpad or has locked liquidity.

Endpoint

GET https://enterprise.guardis.io/v1/socials/posts-over-time

Authentication

Include your API key in the X-API-Key header.

X-API-Key: your_api_key_here

Query Parameters

Parameter
Type
Required
Description

token_address

string

Yes

The mint address of the token

from_date

string

Yes

Start of the time range (ISO 8601 format)

to_date

string

No

End of the time range (ISO 8601 format). Defaults to current time


Example Request

curl -X GET "https://enterprise.guardis.io/v1/socials/posts-over-time?token_address=5GTRGGnmbMCjCUnc3xMweCgVqDEtSDxTdvVdwutcpump&from_date=2025-12-07T00:00:00Z&to_date=2025-12-07T12:00:00Z" \
  -H "X-API-Key: your_api_key_here"

Response Format


Field Reference

Response Wrapper

Field
Type
Description

token_address

string

The mint address of the token

from_date

string

Start of the requested time range

to_date

string

End of the requested time range

interval

string

Data aggregation interval (always 1m for per-minute)

data_points

array

Array of time-series data points

Data Point

Field
Type
Description

timestamp

string

ISO 8601 timestamp for this data point

count

integer

Number of posts during this minute


Example Usage

JavaScript:

Python:


Error Responses

Status Code
Description

400

Missing required parameters

401

Missing or invalid API key

404

Token not found or social tracking not yet active

422

Invalid date format or date range

500

Internal server error

Last updated