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

# trace_get | Tempo

> Tempo API method that returns a specific trace from a transaction by its trace address. Available on Tempo via Chainstack JSON-RPC nodes.

Tempo API method that returns a specific trace from a transaction by its trace address. The trace address is an array of indices that identifies a particular internal call within the transaction execution tree.

## Parameters

* `transactionHash` — the hash of the transaction
* `traceAddress` — an array of index positions describing the trace address within the transaction

## Response

* `result` — the trace object at the specified address, or `null` if not found.

## `trace_get` code examples

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


## OpenAPI

````yaml openapi/tempo_node_api/debug_and_trace/trace_get.json POST /
openapi: 3.0.0
info:
  title: trace_get Tempo example
  version: 1.0.0
  description: This is an API example for trace_get for Tempo.
servers:
  - url: https://tempo-mainnet.core.chainstack.com/c3ce2925b51f1ed18719fe8a23bbdccf
security: []
paths:
  /:
    post:
      tags:
        - Debug and trace
      summary: trace_get
      operationId: tempo-trace-get
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: trace_get
                params:
                  type: array
                  items: {}
                  default:
                    - >-
                      0x0000000000000000000000000000000000000000000000000000000000000000
                    - - '0x0'
                  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

````