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

# Export Label Master List (Legacy)

> Retrieve the master list of address labels and categories in Etherscan metadata (Legacy).

<Warning>
  This is the legacy version, maintained for existing integrations. For new projects, use the [multichain version](/api-reference/endpoint/getlabelmasterlist-v2).
</Warning>

<Note>
  This is a PRO endpoint, available to the [Enterprise tier](https://etherscan.io/apis)
</Note>

<ResponseExample>
  ```json Example response theme={null}
  {
     "status":"1",
     "message":"OK",
     "result":[
        {
           "labelname":"Axelar",
           "labelslug":"axelar",
           "shortdescription":"Axelar delivers secure cross-chain communication for Web3. Its infrastructure enables dApp users to interact with any asset or application, on any chain, with one click. Axelar is an overlay network, delivering Turing-complete message passing via proof-of-stake and permissionless protocols.",
           "notes":"",
           "lastupdatedtimestamp":1712897117
        },
        {
           "labelname":"Binance",
           "labelslug":"binance",
           "shortdescription":"Binance is one of the world’s leading blockchain ecosystems, with a product suite that includes the largest digital asset exchange.",
           "notes":"",
           "lastupdatedtimestamp":1759922816
        }
     ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml openapi/api-reference/endpoint/getlabelmasterlist.json GET /v1/api.ashx
openapi: 3.1.0
info:
  title: Export Label Master List (Legacy)
  version: 2.0.0
  description: >-
    Retrieve the master list of address labels and categories in Etherscan
    metadata (Legacy).
  license:
    name: Etherscan API Terms
    url: https://etherscan.io/terms
servers:
  - url: https://api-metadata.etherscan.io
    description: Etherscan Metadata API.
security:
  - apiKey: []
paths:
  /v1/api.ashx:
    get:
      summary: Export Label Master List (Legacy)
      operationId: getGetlabelmasterlist
      parameters:
        - name: module
          in: query
          required: true
          description: Set to nametag for this endpoint.
          schema:
            type: string
            default: nametag
          example: nametag
        - name: action
          in: query
          required: true
          description: Set to getlabelmasterlist for this endpoint.
          schema:
            type: string
            default: getlabelmasterlist
          example: getlabelmasterlist
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: >-
                      1 if the request returned data, 0 otherwise. A status of 0
                      can indicate an error or a valid request that returned no
                      records.
                  message:
                    type: string
                    description: >-
                      OK on success, otherwise an error description such as
                      NOTOK. See [common error
                      messages](/common-error-messages).
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        labelname:
                          type: string
                          description: Display name of the label.
                        labelslug:
                          type: string
                          description: Machine-readable slug for the label.
                        shortdescription:
                          type: string
                          description: Description of the label.
                        notes:
                          type: string
                          description: Additional notes about the label.
                        lastupdatedtimestamp:
                          type: number
                          description: >-
                            Time the label was last updated, as a UNIX timestamp
                            in seconds.
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: apikey
      description: >-
        Enter your Etherscan API key, or [set one up](/set-up-your-api-key) if
        you don't have one.

````