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

# Get Metadata for an Address

> Get nametags and metadata for the specified address.

<Note>This is a PRO endpoint and is available exclusively to the [Pro Plus tier](https://etherscan.io/apis).</Note>
<Warning>This endpoint is throttled to **2 calls/second** regardless of API Pro tier.</Warning>

<ResponseExample>
  ```json Example response theme={null}
  {
     "status":"1",
     "message":"OK",
     "result":[
        {
           "address":"0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43",
           "nametag":"Coinbase 10",
           "internal_nametag":"",
           "url":"https://coinbase.com",
           "shortdescription":"",
           "notes_1":"",
           "notes_2":"",
           "labels":[
              "Coinbase",
              "Exchange"
           ],
           "labels_slug":[
              "coinbase",
              "exchange"
           ],
           "reputation":0,
           "other_attributes":[
              
           ],
           "lastupdatedtimestamp":1721899658
        }
     ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml openapi/api-reference/endpoint/getaddresstag.json GET /v2/api
openapi: 3.1.0
info:
  title: Get Metadata for an Address
  version: 2.0.0
  description: Get nametags and metadata for the specified address.
  license:
    name: Etherscan API Terms
    url: https://etherscan.io/terms
servers:
  - url: https://api.etherscan.io
    description: Etherscan API.
security:
  - apiKey: []
paths:
  /v2/api:
    get:
      summary: Get Metadata for an Address
      description: Get nametags and metadata for the specified address.
      operationId: getGetaddresstag
      parameters:
        - name: chainid
          in: query
          required: true
          description: >-
            Chain ID to query, eg 1 for Ethereum, 42161 for Arbitrum from our
            [supported chains](/supported-chains).
          schema:
            type: string
          example: '1'
        - 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 getaddresstag for this endpoint.
          schema:
            type: string
            default: getaddresstag
          example: getaddresstag
        - name: address
          in: query
          required: true
          description: >-
            The address to query, like
            0x0000db5C8B030AE20308AC975898E09741E70000, up to a maximum of 100
            addresses per call.
          schema:
            type: string
          example: '0x0000db5C8B030AE20308AC975898E09741E70000'
      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:
                        address:
                          type: string
                          description: The address the tag applies to.
                        nametag:
                          type: string
                          description: Public name tag assigned to the address.
                        internal_nametag:
                          type: string
                          description: Internal name tag, when present.
                        url:
                          type: string
                          description: Official URL associated with the address.
                        shortdescription:
                          type: string
                          description: Short description of the address.
                        notes_1:
                          type: string
                          description: Additional note about the address.
                        notes_2:
                          type: string
                          description: Additional note about the address.
                        labels:
                          type: array
                          description: Labels applied to the address.
                        labels_slug:
                          type: array
                          description: Machine-readable slugs for the labels.
                        reputation:
                          type: number
                          description: >-
                            Reputation indicator for the address. See the
                            [reputation
                            reference](/metadata/reputation-reference).
                        other_attributes:
                          type: array
                          description: >-
                            Other attributes associated with the address. See
                            the [other attributes
                            reference](/metadata/other-attributes-reference).
                        lastupdatedtimestamp:
                          type: number
                          description: >-
                            Time the tag 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.

````