---
title: "Get Validator Status for an Address"
method: GET
path: "/v2/ethereum/{network}/validator/status/{address}"
tags: ["Ethereum Staking Reporting"]
---

# Get Validator Status for an Address

`GET /v2/ethereum/{network}/validator/status/{address}`

Returns a status object for a Validator address.

## Path parameters

- `network` 'mainnet' | 'holesky' | 'hoodi', required — Network
- `address` string, required

## Response `200`

OK

- StatusResponse1
  - `address` string — The validator address associated with the status.
  - `status` 'UNKNOWN' | 'PENDING' | 'ACTIVE' | 'EXITED' | 'WITHDRAWAL' | 'DEPOSITED' — The current status of a validator, which maps from on-chain statuses. See reference [here](https://docs.blockdaemon.com/reference/ethereum-api-v2-overview#%EF%B8%8F-get-a-validator-status).
  - `timestamp` number — The epoch second timestamp that the status was recorded at.
  - `metadata` StatusMetadata
    - `rawStatus` string, string — The on-chain status of the validator. See reference [here](https://docs.blockdaemon.com/reference/ethereum-api-v2-overview#%EF%B8%8F-get-a-validator-status).
    - `balance` string, number — The current balance.
    - `index` string, number — The current index.
    - `withdrawalCredentials` string — Withdrawal credentials for the address.
    - `effectiveBalance` string, number — The effective balance of the validator.
    - `slashed` string — Indicates whether the validator is slashed.
    - `activationEligibilityEpoch` string, number — The epoch at which the validator became eligible for activation.
    - `activationEpoch` string, number — The epoch at which the validator was activated.
    - `exitEpoch` string, number — The epoch at which the validator is scheduled to exit.
    - `withdrawableEpoch` string, number — The epoch at which the validator becomes withdrawable.

## Other responses

- `400` — Bad Request
- `422` — Validation Error

---

[API](https://skmtc.dev/blockdaemon/apis/staking-api.md) · [All operations](https://skmtc.dev/blockdaemon/apis/staking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/blockdaemon/staking-api/revisions/f94e296a08a3/schema)
