Member Activity

GraphQL Endpoint to fetch members' activity in your Discord Server

Run in Postman

GraphQL Query

query MembersActivity($page: Int!, $pageSize: Int!, $startDate: String, $endDate: String, $guildId: String) {
    membersActivity(page: $page, pageSize: $pageSize, startDate: $startDate, endDate: $endDate, guildId: $guildId) {
        totalMembers
        membersList {
            id
            name
            discriminator
            lastActiveDate
            numMessages
            numMessagesLast90Days
            numMessagesLast60Days
            numMessagesLast30Days
        }
    }
}

Variables

Response

Examples

POST https://dashboard.withblaze.app/api/graphql-api

Without startDate and endDate

Query Parameters

Name
Type
Description

page*

1

Page number should start from 1

pageSize*

10

Max Limit - 100

guildId

GUILD-ID

Optional: Guild ID of the Discord Server

If the guild ID is not specified, the data of the discord server that was integrated first will be retrieved

Headers

Name
Type
Description

x-api-key*

API-KEY

Your Blaze API Key

POST https://dashboard.withblaze.app/api/graphql-api

With startDate and endDate

Query Parameters

Name
Type
Description

page*

1

pageSize*

10

startDate

2023-05-14

endDate

2023-06-14

guildId

GUILD-ID

Guild ID of the discord server

Headers

Name
Type
Description

x-api-key

API-KEY

Your Blaze API Key

Last updated

Was this helpful?