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

# /debank/users

> Get a wallet's DeBank profile and multichain net worth by address

**Price:** 1 credit

**💡 AI Hint:** Get the full DeBank profile of a crypto wallet by its EVM address (0x...). Returns the wallet's total net worth in USD, per-blockchain value breakdown, social profile (web3 id, bio, follower and following counts, DeBank rank, trust count, linked Twitter handle, VIP/pro status), reputation tags, the chains the wallet is active on, and a summary of its largest token, protocol and NFT-collection holdings. Use the tokens, protocols and history endpoints for the full holdings and transaction list.

**⚠️ Common errors:** 412: Wallet not found



## OpenAPI

````yaml /openapi-filtered.json post /api/debank/users
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/debank/users:
    post:
      tags:
        - /debank
      summary: /debank/users
      description: >-
        Get a wallet's DeBank profile and multichain net worth by address


        **Price:** 1 credit


        **💡 AI Hint:** Get the full DeBank profile of a crypto wallet by its
        EVM address (0x...). Returns the wallet's total net worth in USD,
        per-blockchain value breakdown, social profile (web3 id, bio, follower
        and following counts, DeBank rank, trust count, linked Twitter handle,
        VIP/pro status), reputation tags, the chains the wallet is active on,
        and a summary of its largest token, protocol and NFT-collection
        holdings. Use the tokens, protocols and history endpoints for the full
        holdings and transaction list.


        **⚠️ Common errors:** 412: Wallet not found
      operationId: __api_debank_users_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DebankAddressPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DebankUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DebankAddressPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        id:
          type: string
          description: Wallet address (EVM 0x address)
          examples:
            - '0xd8da6bf26964af9d7eed9e03e53415d37aa96045'
      type: object
      required:
        - id
    DebankUser:
      properties:
        '@type':
          type: string
          default: DebankUser
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        web3_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        born_at:
          anyOf:
            - type: integer
            - type: 'null'
        usd_value:
          anyOf:
            - type: number
            - type: 'null'
        tvf:
          anyOf:
            - type: number
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        following_count:
          anyOf:
            - type: integer
            - type: 'null'
        trust_count:
          anyOf:
            - type: integer
            - type: 'null'
        trust_count_7d:
          anyOf:
            - type: integer
            - type: 'null'
        twitter_id:
          anyOf:
            - type: string
            - type: 'null'
        is_vip:
          type: boolean
          default: false
        is_pro:
          type: boolean
          default: false
        is_spam:
          anyOf:
            - type: boolean
            - type: 'null'
        is_scam:
          anyOf:
            - type: boolean
            - type: 'null'
        is_contract:
          type: boolean
          default: false
        tags:
          items:
            type: string
          type: array
          default: []
        used_chains:
          items:
            type: string
          type: array
          default: []
        chains:
          items:
            $ref: '#/components/schemas/DebankChainBalance'
          type: array
          default: []
        top_coins:
          items:
            $ref: '#/components/schemas/DebankTopToken'
          type: array
          default: []
        top_tokens:
          items:
            $ref: '#/components/schemas/DebankTopToken'
          type: array
          default: []
        top_protocols:
          items:
            $ref: '#/components/schemas/DebankTopProtocol'
          type: array
          default: []
        top_collections:
          items:
            $ref: '#/components/schemas/DebankTopCollection'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DebankChainBalance:
      properties:
        '@type':
          type: string
          default: DebankChainBalance
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        usd_value:
          anyOf:
            - type: number
            - type: 'null'
        native_token_id:
          anyOf:
            - type: string
            - type: 'null'
        community_id:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    DebankTopToken:
      properties:
        '@type':
          type: string
          default: DebankTopToken
        id:
          anyOf:
            - type: string
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        usd_value:
          anyOf:
            - type: number
            - type: 'null'
        portfolio_percent:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DebankTopProtocol:
      properties:
        '@type':
          type: string
          default: DebankTopProtocol
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        usd_value:
          anyOf:
            - type: number
            - type: 'null'
        portfolio_percent:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DebankTopCollection:
      properties:
        '@type':
          type: string
          default: DebankTopCollection
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        item_count:
          anyOf:
            - type: integer
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````