> ## Documentation Index
> Fetch the complete documentation index at: https://docs.minenet.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Modrinth



## OpenAPI

````yaml api-reference/openapi.yaml get /modrinth/search
openapi: 3.1.0
info:
  title: Minenet Client API
  version: 1.0.0
  description: >
    Team-scoped API for deployments, servers, snapshots, files, and mod platform
    metadata.


    Authentication:

    - Bearer user token (`mnp_*`)

    - Bearer agent token (`mna_*`)


    Global rate limit: 100 requests/minute per token.
servers:
  - url: https://your-domain.com/api/client/v1
security:
  - bearerAuth: []
tags:
  - name: Deployments
  - name: Servers
  - name: Snapshots
  - name: Files
  - name: Modrinth
  - name: CurseForge
paths:
  /modrinth/search:
    get:
      tags:
        - Modrinth
      summary: Search Modrinth
      operationId: searchModrinth
      parameters:
        - name: query
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            default: 0
        - name: index
          in: query
          schema:
            type: string
            enum:
              - relevance
              - downloads
              - follows
              - newest
              - updated
            default: relevance
        - name: project_type
          in: query
          schema:
            type: string
        - name: versions
          in: query
          schema:
            type: string
        - name: loaders
          in: query
          schema:
            type: string
        - name: categories
          in: query
          schema:
            type: string
        - name: server_side
          in: query
          schema:
            type: string
            enum:
              - required
              - optional
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                  total_hits:
                    type: integer
                  offset:
                    type: integer
                  limit:
                    type: integer
                  query:
                    type: string
                  results:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token

````