:project_id is the Top.gg project ID of a project your OAuth authorization covers, and each endpoint states its required scope.
A project that is not part of the authorization returns 404. A missing scope returns 403.
Project tokens
With a legacy project token, use@me in place of :project_id. The token itself identifies the project. Project tokens only work with @me, and OAuth access tokens only work with explicit project IDs. Request bodies and responses are identical.
Bot endpoints are subject to stricter rate limits than other v1 endpoints. Stay within the published limits to avoid
429 Too Many Requests responses.GET /projects
OAuth scope: none, any valid access token or application token Lists the projects the current credential covers. With an access token that is the single project of the authorization. With an application token it is every project granted to your application, 100 per page. Not available with project tokens.Query parameters
string
Cursor from a previous response to fetch the next page. Only meaningful with an application token.
Response fields
object[]
required
The covered projects.
string
Present while more pages exist. Pass it back as the
cursor query parameter. Keep paging until the cursor is absent. A page can be empty while later pages still hold projects.Example response
GET /projects/:project_id
OAuth scope:project.information.read
Returns the project associated with your current token.
Response fields
string
required
The unique Top.gg-sourced Snowflake identifier for the project.
string
required
The project name as it appears on the external platform.
string
required
The platform the project belongs to. One of
discord or roblox.string
required
The project type. One of
bot, server, or game.string
required
The short description set during project creation.
string[]
required
List of tag IDs associated with the project.
number
required
Current vote count used for ranking calculations.
number
required
Total all-time votes received by the project.
number
required
Average review score across all reviews.
number
required
Total number of reviews submitted for the project.
Example response
PATCH /projects/:project_id
OAuth scope:project.information.write
Updates the headline and/or page content for your project. Both fields are locale-keyed, so you can set content for multiple languages in a single request.
Request body
At least one ofheadline or page_content must be provided.
object
A map of locale codes to headline strings. Each headline must be between 3 and 140 characters.
object
A map of locale codes to page content strings (Markdown supported). Each entry must be between 300 and 50,000 characters.
Supported locales
en, de, fr, pt, tr, hi, ja, ar, nl, ko, it, es, ru, uk, vi, zh
Response
Returns204 No Content on success. No response body is returned.
Changes may take up to 1 hour to appear on the website due to caching.
Error responses
POST /projects/:project_id/announcements
OAuth scope:project.announcements.write
Creates a new announcement for your project. Announcements appear on your project’s page and can be used to notify users about updates, new features, or other news.
You can create at most one announcement every 4 hours. Attempts during the cooldown period receive a
429 Too Many Requests response with a Retry-After header indicating how many seconds to wait.Request body
string
required
The announcement title. Must be between 3 and 100 characters.
string
required
The announcement body text. Must be between 10 and 2,000 characters.
string
The category to publish the announcement under. One of
announcement, event, or new_feature. Defaults to announcement when omitted.Response fields
string
required
The title of the created announcement.
string
required
The body content of the created announcement.
string
required
ISO 8601 timestamp of when the announcement was created.
Example response
Error responses
PATCH /projects/:project_id/metrics
OAuth scope:project.metrics.write
Submits a single metrics payload for your project. Use this to push fresh numbers after an event such as joining or leaving a guild or a player connecting.
Request body
The body must match the authenticated project’s platform. See the platform payloads section below for the supported fields per platform.Response
Returns204 No Content on success. No response body is returned.
Error responses
POST /projects/:project_id/metrics/batch
OAuth scope:project.metrics.write
Submits up to 100 metrics entries in a single request. Entries without a timestamp are applied first in the order they appear in the request. Entries with a timestamp are applied afterward in ascending timestamp order, so you can backfill gaps or push buffered samples after a network interruption.
Request body
object[]
required
The batch of metrics entries. Must contain between 1 and 100 entries.
Response
Returns204 No Content when every entry is accepted. If any entry fails validation, processing stops and the request returns 422.
Error responses
Platform payloads
The metrics payload is shaped per platform. ForPATCH /projects/:project_id/metrics, send this payload as the request body. For the batch metrics endpoint, send the same payload under data[].metrics. Sending the wrong shape for your project returns 422.
Discord bot
Use for projects withplatform: "discord" and type: "bot". At least one field is required.
integer
Total number of servers the bot is currently in. Must be zero or greater.
integer
Total number of shards the bot is currently running. Must be zero or greater.
Discord server
Use for projects withplatform: "discord" and type: "server". At least one field is required.
integer
Total number of members in the server. Must be zero or greater.
integer
Number of members currently online. Must be zero or greater and cannot exceed
member_count when both are provided.Roblox game
Use for projects withplatform: "roblox" and type: "game".
integer
required
Current number of players in the game. Must be zero or greater.
PUT /projects/:project_id/commands
OAuth scope:project.information.write
Overwrites the list of slash command definitions for your bot project on Top.gg. This endpoint is only applicable to bot-type projects on the discord platform.
Request body
The request body must be a JSON array of command objects following Discord’s application command structure. Pass an empty array to clear all commands.object[]
required
Array of application command objects following Discord’s application command structure.
Response
Returns204 No Content on success. No response body is returned.