Get Historic Indicators

Retrieve historical proprietary trading indicators for a specific liquidity pool over a given time range.

Endpoint

GET https://enterprise.guardis.io/v1/indicators/historic

Authentication

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

X-API-Key: your_api_key_here

Query Parameters

Parameter
Type
Required
Description

pair_address

string

Yes

The on-chain address of the liquidity pool

from

string

Yes

Start of the time range (ISO 8601 format)

to

string

Yes

End of the time range (ISO 8601 format)


Example Request

curl -X GET "https://enterprise.guardis.io/v1/indicators/historic?pair_address=7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU&from=2025-01-15T00:00:00Z&to=2025-01-15T12:00:00Z" \
  -H "X-API-Key: your_api_key_here"

Response Format

Returns an array of indicator snapshots ordered chronologically within the specified time range.


Field Reference

Response Wrapper

Field
Type
Description

pair_address

string

The queried pool address

from

string

Start of the requested time range

to

string

End of the requested time range

count

integer

Number of indicator snapshots returned

indicators

array

Array of indicator snapshots ordered chronologically

Indicator Snapshot

Identification

Field
Type
Description

pair_address

string

The on-chain address of the liquidity pool

token_address

string

The mint address of the token

Wallet Metrics

Field
Type
Description

total_wallets

integer

Total number of unique wallets that have traded this token

organic_wallets

integer

Number of wallets classified as organic (non-bot) traders

organic_profitable_wallets

integer

Number of organic wallets currently in profit

organic_to_total_wallets_ratio

string

Ratio of organic wallets to total wallets (0-1)

bot_to_total_wallets_ratio

string

Ratio of bot wallets to total wallets (0-1)

profitable_organic_to_total_organic_ratio

string

Ratio of profitable organic wallets to total organic wallets (0-1)

Volume Metrics

Field
Type
Description

total_volume_usd

string

Total trading volume in USD

organic_volume_usd

string

Trading volume from organic wallets in USD

bot_volume_ratio

string

Ratio of bot volume to total volume (0-1)

organic_volume_ratio

string

Ratio of organic volume to total volume (0-1)

profitable_volume

string

Volume from profitable trades in USD

profitable_volume_total_volume_ratio

string

Ratio of profitable volume to total volume (0-1)

Behavioral Metrics

Field
Type
Description

organic_mean_hold_seconds

string

Average hold time for organic wallets in seconds

organic_mean_trade_frequency_seconds

string

Average time between trades for organic wallets in seconds

Smart Money Metrics

Field
Type
Description

smart_money_score

string

Proprietary score indicating smart money activity (0-100)

raw_smart_money_score

string

Unadjusted smart money score before normalization

smart_money_influx_10min

string

Smart money inflow over the last 10 minutes in USD

smart_money_outflux_10min

string

Smart money outflow over the last 10 minutes in USD

raw_smart_money_influx

string

Unadjusted smart money inflow in USD

raw_smart_money_outflux

string

Unadjusted smart money outflow in USD

smart_holders

integer

Number of wallets classified as smart money

raw_holders

integer

Total number of current holders

smart_to_raw_holders_ratio

string

Ratio of smart money holders to total holders (0-1)

Social Metrics

Field
Type
Description

social_sentiment_score

string

Sentiment score derived from social signals (-1 to 1)

social_blast_radius_score

integer

Estimated social reach/exposure metric

Price & Status

Field
Type
Description

price_usd

string

Token price in USD at this snapshot

status

string

Processing status of the indicator

attempts

integer

Number of calculation attempts

created_at

string

ISO 8601 timestamp when the indicator was first created

Note: Decimal values are returned as strings to preserve precision. Indicators are generated every minute, so a 12-hour range would return up to 720 snapshots.


Example Usage

JavaScript:

Python:


Error Responses

Status Code
Description

400

Missing or invalid parameters

401

Missing or invalid API key

404

No indicators found for the provided pair address and time range

422

Invalid date format or date range

500

Internal server error

Last updated