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

# Get transfer

> Retrieves a specific transfer record for a guild

### Required Scopes

```
guild:read
```

### Rate Limit

10 requests per second


## OpenAPI

````yaml GET /guild/transfers/{transferId}
openapi: 3.1.0
info:
  title: Multex Discord Bot API
  version: 1.0.0
  description: API documentation for Multex Discord bot
servers:
  - url: https://api.multex.tech
    description: Development server
security: []
paths:
  /guild/transfers/{transferId}:
    get:
      tags:
        - Guild Management
      summary: Get Single Transfer
      description: Retrieves a specific transfer record for a guild
      parameters:
        - name: transferId
          in: path
          required: true
          schema:
            type: string
          description: Transfer record ID
      responses:
        '200':
          description: Transfer record retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  guildId:
                    type: string
                  robloxId:
                    type: string
                  name:
                    type: string
                  date:
                    type: string
                    format: date-time
                  from:
                    type: string
                  to:
                    type: string
                  signed:
                    type: string
        '400':
          description: Bad request - missing required parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request - missing required parameters
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Unauthorized - invalid API key
        '404':
          description: Transfer not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Transfer not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for accessing protected guild endpoints

````