> ## 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.

# Shield: check many users



## OpenAPI

````yaml /openapi.json post /shield/batch
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:
  /shield/batch:
    post:
      tags:
        - Shield
      summary: 'Shield: check many users'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - roblox_ids
              properties:
                roblox_ids:
                  type: array
                  items:
                    type: number
      responses:
        '200':
          $ref: '#/components/responses/Success'
        default:
          $ref: '#/components/responses/Error'
components:
  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.

````