v19

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-037759134.1 KB
threads

Get multiple threads

get/threads

Response

Expected response to a valid request

idstring required

The ID of the thread

type'project' | 'report' | 'direct_message' required
project_idstring nullable

The ID of the associated project if a project thread

report_idstring nullable

The ID of the associated report if a report thread

Example response

[
  {
    "id": "WWXXYYZZ",
    "messages": [
      {
        "id": "MMNNOOPP",
        "author_id": "QQRRSSTT",
        "body": {
          "type": "status_change",
          "body": "This is the text of the message.",
          "replying_to": "SSTTUUVV",
          "old_status": "processing",
          "new_status": "approved"
        }
      }
    ],
    "members": [
      {
        "username": "my_user",
        "name": "My User",
        "bio": "My short biography",
        "payout_data": {
          "payout_wallet": "paypal",
          "payout_wallet_type": "email",
          "payout_address": "support@modrinth.com"
        },
        "id": "EEFFGGHH",
        "avatar_url": "https://avatars.githubusercontent.com/u/11223344?v=1",
        "role": "developer",
        "badges": 63,
        "auth_providers": [
          "github",
          "gitlab",
          "steam",
          "microsoft",
          "google",
          "discord"
        ]
      }
    ]
  }
]