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

# Get a registered blockchain address

> Returns a single registered address by its id. Obtain the id from the response of the register endpoint or from an account search.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json get /v1/mastercard/crypto-credential/crypto-addresses/{cryptoAddressId}
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/mastercard/crypto-credential/crypto-addresses/{cryptoAddressId}:
    get:
      tags:
        - Mastercard Crypto Credential
      summary: Get a registered blockchain address
      description: >-
        Returns a single registered address by its id. Obtain the id from the
        response of the register endpoint or from an account search.
      operationId: CryptoCredentialController_getCryptoAddress
      parameters:
        - name: cryptoAddressId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Crypto address returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CryptoCredentialAddressEntity'
      security:
        - bearer: []
components:
  schemas:
    CryptoCredentialAddressEntity:
      type: object
      properties:
        id:
          type: string
          description: >-
            Identifier of the registered address. Use it to fetch, update or
            decommission the address.
        accountAlias:
          type: string
          nullable: true
          description: The alias of the account the address is registered under.
        status:
          nullable: true
          description: >-
            The status of the address. Only an active address is returned when
            the alias is resolved.
          allOf:
            - $ref: '#/components/schemas/CryptoCredentialAccountStatus'
        address:
          type: string
          nullable: true
          description: The registered blockchain address.
        asset:
          nullable: true
          description: >-
            The token tied to a specific blockchain held at the address. It
            determines which network the address resolves on.
          allOf:
            - $ref: '#/components/schemas/AssetId'
        createdAt:
          type: string
          nullable: true
          description: When the address was registered.
        updatedAt:
          type: string
          nullable: true
          description: When the address was last updated.
      required:
        - id
    CryptoCredentialAccountStatus:
      type: string
      enum:
        - Active
        - Suspended
        - Decommissioned
      description: >-
        The status of the alias. Only an active alias should be treated as safe
        to send funds to. Absent when the alias could not be resolved.
    AssetId:
      type: string
      enum:
        - POL
        - USDT_POLYGON
        - USDC_POLYGON
        - SBC_POLYGON
        - ETH
        - USDT_ETHEREUM
        - USDC_ETHEREUM
        - PYUSD_ETHEREUM
        - DAI_ETHEREUM
        - EURC_ETHEREUM
        - SBC_ETHEREUM
        - TRX
        - USDT_TRON
        - SBC_TRON
        - ETH_BASE
        - USDC_BASE
        - USDB_BASE
        - EURC_BASE
        - SBC_BASE
        - ETH_OPTIMISM
        - USDT_OPTIMISM
        - USDC_OPTIMISM
        - BTC
        - CELO
        - CUSD_CELO
        - USDC_CELO
        - SBC_CELO
        - SOL
        - USDC_SOLANA
        - USDT_SOLANA
        - PYUSD_SOLANA
        - USDP_SOLANA
        - EURC_SOLANA
        - SBC_SOLANA
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````