# Get Identity History

Returns historical account identities with their block numbers and timestamps.

_Source: https://beta.taostats.io/docs/api-reference/identity/get-identity-history_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/identity/history/v1
```

Requires an API key in the `Authorization` header.

Returns historical account identities with their block numbers and timestamps.

## Try it

Try this request in the browser on the HTML version of this page, or use the code samples below.

### Examples

See how a wallet's on-chain identity has changed over time

```text
https://api.taostats.io/api/identity/history/v1?address=5GH2aUTMRUh1RprCgH4x3tRyCaKeUi5BfmYCfs1NARA8R54n&limit=50
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/identity/history/v1?address=5GH2aUTMRUh1RprCgH4x3tRyCaKeUi5BfmYCfs1NARA8R54n&limit=50"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/identity/history/v1?address=5GH2aUTMRUh1RprCgH4x3tRyCaKeUi5BfmYCfs1NARA8R54n&limit=50', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/identity/history/v1?address=5GH2aUTMRUh1RprCgH4x3tRyCaKeUi5BfmYCfs1NARA8R54n&limit=50",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `address` | query | `string` |  | SS58 or hex format |
| `page` | query | `integer (int32)` |  |  |
| `limit` | query | `integer (int32)` |  |  |
| `order` | query | `string` |  | One of `block_number_asc`, `block_number_desc`, `timestamp_asc`, `timestamp_desc`. |

## Responses

### `200` — Identity retrieved successfully

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `data` | `array` | Yes |  |
| `data[].additional` | `string, nullable` |  |  |
| `data[].address` | `object` | Yes |  |
| `data[].address.hex` | `string` | Yes | The hex format of the hot key |
| `data[].address.ss58` | `string` | Yes | The SS58 format of the hot key |
| `data[].block_number` | `integer (int32)` | Yes |  |
| `data[].description` | `string, nullable` |  |  |
| `data[].discord` | `string, nullable` |  |  |
| `data[].github_repo` | `string, nullable` |  |  |
| `data[].image` | `string, nullable` |  |  |
| `data[].name` | `string, nullable` |  |  |
| `data[].timestamp` | `string (date-time)` | Yes |  |
| `data[].url` | `string, nullable` |  |  |
| `pagination` | `object` | Yes |  |
| `pagination.current_page` | `integer (int32)` | Yes |  |
| `pagination.next_page` | `integer (int32), nullable` |  |  |
| `pagination.per_page` | `integer (int32)` | Yes |  |
| `pagination.prev_page` | `integer (int32), nullable` |  |  |
| `pagination.total_items` | `integer (int32)` | Yes |  |
| `pagination.total_pages` | `integer (int32)` | Yes |  |

### Other responses

| Status | Meaning |
| --- | --- |
| `400` | Bad request |
| `404` | Identity not found |
| `500` | Internal server error |

Every request needs an `Authorization` header holding your API key — see [Getting started with the Taostats API](https://beta.taostats.io/docs/start-here/getting-started-with-taostats-api).
