post/guilds/{guild_id}/discovery

Apply for guild discovery

Submit a discovery application for a guild. Requires MANAGE_GUILD permission.

apply_for_discovery

Parameters

NameInTypeDescription
guild_id*pathSnowflakeTypeThe ID of the guild

Request body

application/json

json
{
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "minLength": 10,
      "maxLength": 300,
      "description": "Description for discovery listing"
    },
    "category_type": {
      "type": "integer",
      "minimum": 0,
      "maximum": 8,
      "format": "int32",
      "description": "Discovery category type"
    },
    "primary_language": {
      "type": "string",
      "description": "Primary community language (BCP-47 code)"
    },
    "custom_tags": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 2,
        "maxLength": 30
      },
      "maxItems": 10,
      "description": "Up to 10 custom discovery tags"
    }
  },
  "required": [
    "description",
    "category_type"
  ]
}

Responses

200

Success

json
{
  "type": "object",
  "properties": {
    "guild_id": {
      "type": "string",
      "pattern": "^(0|[1-9][0-9]*)$",
      "description": "Guild ID"
    },
    "guild_nsfw_level": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/NSFWLevel"
        },
        {
          "type": "null"
        }
      ],
      "description": "NSFW level of the guild"
    },
    "status": {
      "type": "string",
      "description": "Application status"
    },
    "description": {
      "type": "string",
      "description": "Discovery description"
    },
    "category_type": {
      "type": "number",
      "description": "Discovery category type"
    },
    "primary_language": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "Primary community language"
    },
    "custom_tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Custom discovery tags"
    },
    "applied_at": {
      "type": "string",
      "description": "Application timestamp"
    },
    "reviewed_at": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "Review timestamp"
    },
    "review_reason": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "Review reason (approval/rejection)"
    },
    "removed_at": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "Removal timestamp"
    },
    "removal_reason": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "Removal reason"
    }
  },
  "required": [
    "guild_id",
    "status",
    "description",
    "category_type",
    "custom_tags",
    "applied_at"
  ]
}
400

Bad Request - The request was malformed or contained invalid data

json
{
  "type": "object",
  "properties": {
    "code": {
      "$ref": "#/components/schemas/APIErrorCode"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "errors": {
      "type": "array",
      "description": "Field-specific validation errors",
      "items": {
        "$ref": "#/components/schemas/ValidationErrorItem"
      }
    }
  },
  "required": [
    "code",
    "message"
  ]
}
401

Unauthorized - Authentication is required or the token is invalid

json
{
  "type": "object",
  "properties": {
    "code": {
      "$ref": "#/components/schemas/APIErrorCode"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "errors": {
      "type": "array",
      "description": "Field-specific validation errors",
      "items": {
        "$ref": "#/components/schemas/ValidationErrorItem"
      }
    }
  },
  "required": [
    "code",
    "message"
  ]
}
403

Forbidden - You do not have permission to perform this action

json
{
  "type": "object",
  "properties": {
    "code": {
      "$ref": "#/components/schemas/APIErrorCode"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "errors": {
      "type": "array",
      "description": "Field-specific validation errors",
      "items": {
        "$ref": "#/components/schemas/ValidationErrorItem"
      }
    }
  },
  "required": [
    "code",
    "message"
  ]
}
429

Too Many Requests - You are being rate limited

json
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "enum": [
        "RATE_LIMITED"
      ]
    },
    "message": {
      "type": "string"
    },
    "retry_after": {
      "type": "number",
      "description": "Seconds to wait before retrying"
    },
    "global": {
      "type": "boolean",
      "description": "Whether this is a global rate limit"
    }
  },
  "required": [
    "code",
    "message",
    "retry_after"
  ]
}
500

Internal Server Error - An unexpected error occurred

json
{
  "type": "object",
  "properties": {
    "code": {
      "$ref": "#/components/schemas/APIErrorCode"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "errors": {
      "type": "array",
      "description": "Field-specific validation errors",
      "items": {
        "$ref": "#/components/schemas/ValidationErrorItem"
      }
    }
  },
  "required": [
    "code",
    "message"
  ]
}