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

# eth_accounts | Tempo

> Tempo API method that returns a list of addresses owned by the node. Since Tempo nodes do not manage private keys, this always returns an empty array.

Tempo API method that returns a list of addresses owned by the node. Since Tempo nodes do not manage private keys, this always returns an empty array.

## Parameters

* `none`

## Response

* `result` — an array of addresses owned by the node. On Tempo, this always returns an empty array since the node does not manage accounts.

## `eth_accounts` code examples

<CodeGroup>
  ```bash cURL theme={"system"}
  curl -X POST "CHAINSTACK_NODE_URL" \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc": "2.0", "method": "eth_accounts", "params": [], "id": 1}'
  ```
</CodeGroup>


## OpenAPI

````yaml openapi/tempo_node_api/account_info/eth_accounts.json POST /
openapi: 3.0.0
info:
  title: eth_accounts Tempo example
  version: 1.0.0
  description: This is an API example for eth_accounts for Tempo.
servers:
  - url: https://tempo-mainnet.core.chainstack.com/c3ce2925b51f1ed18719fe8a23bbdccf
security: []
paths:
  /:
    post:
      tags:
        - Account info
      summary: eth_accounts
      operationId: tempo-eth-accounts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_accounts
                params:
                  type: array
                  items: {}
                  default: []
                  description: Method parameters
                id:
                  type: integer
                  default: 1
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    description: Method result

````