Generate an authorization URL to get an authorization code
The ID of the client
The uri to redirect to with the authorization code (must be listed in the client's redirect URIs)
The scopes to request authorization for (must be listed in the client's scopes)
The URL to get the authorization code
Get an access token from an authorization code
(Rquest to https://api.modrinth.com/_internal/oauth/token
)
The authorization code gotten from the authorization URL
The ID of the client
The uri to redirect to after getting the token (must be listed in the client's redirect URIs)
The access token and other token information
Get the statistics for Modrinth
The statistics for Modrinth
UnexpectedApiError If an unexpected error occurs
Get the base URL for the Modrinth API
The base URL for the Modrinth API
Check if a project is valid
The ID or slug of the project to check
Whether the project is valid
Get a project by its ID or slug
The ID or slug of the project to get
The project with the given ID or slug
ProjectNotFoundError If the project with the given ID or slug does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get multiple projects by their IDs or slugs
The IDs or slugs of the projects to get
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get a random selection of projects
The number of projects to get (between 0 and 100)
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Search for projects
The query to search for
Optional
options: SearchOptionsOptions for the search
The search results
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
const result = await modrinth.search('life', {
limit: 3,
index: SearchIndex.Downloads,
facets: new SearchFacets(
new FacetGroup(
new Facet(FacetType.Categories, FacetOperation.EQUALS, 'forge')
),
new FacetGroup(
new Facet(FacetType.Versions, FacetOperation.EQUALS, '1.16.5'),
new Facet(FacetType.Versions, FacetOperation.EQUALS, '1.17.1')
)
),
});
Get a license by its ID
The ID of the license to get
LicenseNotFoundError If the license with the given ID does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get a tag by its type
The type of the tag to get
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the members of multiple teams
The IDs of the teams to get the members of
The members of the teams with the given IDs
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the team members of a project
The ID or slug of the project to get the team members of
The team members of the project with the given ID or slug
ProjectNotFoundError If the project with the given ID or slug does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the team members of a team
The ID of the team to get the members of
The team members of the team with the given ID
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the user that is authenticated with the authorization header
Rquires authorization with scope:
USER_READ
The authenticated user
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the projects followed by a user
Rquires authorization with scope:
USER_READ
The ID or username of the user to get the followed projects of
UserNotFoundError If the user with the given ID or username does not exist
ApiError If an error occurs
Get a user by their ID or username
The ID or username of the user to get
UserNotFoundError If the user with the given ID or username does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get a user's projects by their ID or username
The ID or username of the user
UserProjectsNotFoundError If the user's projects do not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get multiple users by their IDs or usernames
The IDs or usernames of the users to get
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get the versions of a project
The ID or slug of the project to get the versions of
Options for the search
VersionNotFoundError If there are no versions for the project
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get a version of a project
The ID of the version to get
VersionNotFoundError If the version with the given ID does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get a version from a file hash
The hash of the file to get the version of
Options for the search
The version with the given file hash
VersionNotFoundError If the version with the given file hash does not exist
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
Get multiple versions by their IDs
The IDs of the versions to get
ApiError If an error occurs
UnexpectedApiError If an unexpected error occurs
The main class for the Modrinth API
Example