đŸ‘ĨSocials

Endpoints and responses for social analytics

Get Social Volume

GET https://api.pepeanalytics.com/v1/socials/:address

Searches for mentions of the coin across all Telegram discussions

Path Parameters

Name
Type
Description

address*

String

Token address

Query Parameters

Name
Type
Description

days_ago

String | Number

How many days to trace back to (Default: 7)

interval

String

On what interval to show data points for (Default: 30m)

{
    data: [
        {
            datetime: string
            mentionsCount: number
        }
        ...
    ]
    message: 'Success'
    isError: false
}

Get Developer Activity

GET https://api.pepeanalytics.com/v1/socials/dev

Looks at Github organizations for developer activity

Query Parameters

Name
Type
Description

org_name*

String

Github organization name (Note: must be a public org)

interval

String

On what interval to show data points for (Default: 1d)

days_ago

String | Number

How many days ago to be traced back (Default: 30)

{
    data: [
        {
            datetime: string
            activity: number
        }
        ...
    ]
    message: 'Success'
    isError: false
}

Last updated