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

# Look up by Discord ID



## OpenAPI

````yaml /openapi.json get /lookup/discord/{discordId}
openapi: 3.1.0
info:
  title: Technified Developer API
  version: 1.0.0
  description: >-
    Call a guild's Technified data with a guild API key. Paste your key
    (technified_<guildId>_<random>) into Authorization above, then send requests
    against your own guild.


    Endpoints whose path has no {guildId} read the guild from your key; send
    your guild ID in the X-Guild-ID header where noted.
servers:
  - url: https://api.technified.xyz/api/v1
security:
  - ApiKeyHeader: []
paths:
  /lookup/discord/{discordId}:
    get:
      tags:
        - Lookup
      summary: Look up by Discord ID
      parameters:
        - name: discordId
          in: path
          required: true
          schema:
            type: string
        - $ref: '#/components/parameters/GuildIdHeader'
      responses:
        '200':
          $ref: '#/components/responses/Success'
        default:
          $ref: '#/components/responses/Error'
components:
  parameters:
    GuildIdHeader:
      name: X-Guild-ID
      in: header
      required: true
      schema:
        type: string
      description: Your guild ID. Must match the guild your API key is bound to.
  responses:
    Success:
      description: Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SuccessEnvelope'
    Error:
      description: Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        code:
          type: integer
          example: 200
        message:
          type: string
        data:
          type: object
          additionalProperties: true
    ErrorEnvelope:
      type: object
      properties:
        status:
          type: string
          example: error
        code:
          type: integer
          example: 401
        message:
          type: string
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your guild API key, e.g. technified_123..._abc. Create one under
        Dashboard > Settings > API Keys.

````