# Get EVM Contract

Returns indexed EVM contracts with addresses, creators, token metadata and detected contract standards.

_Source: https://beta.taostats.io/docs/api-reference/evm/get-evm-contract_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/evm/contract/v1
```

Requires an API key in the `Authorization` header.

Returns indexed EVM contracts with addresses, creators, token metadata and detected contract standards. Records include ABI information when available.

## Try it

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

### Examples

List deployed EVM contracts

```text
https://api.taostats.io/api/evm/contract/v1?order=block_number_desc&limit=20
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/evm/contract/v1?limit=20&order=block_number_desc"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/evm/contract/v1?limit=20&order=block_number_desc', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/evm/contract/v1?limit=20&order=block_number_desc",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `address` | query | `string` |  |  |
| `block_start` | query | `integer (int32)` |  | Start of block range (inclusive) |
| `block_end` | query | `integer (int32)` |  | End of block range (inclusive) |
| `timestamp_start` | query | `integer (int64)` |  | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) |
| `timestamp_end` | query | `integer (int64)` |  | End of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) |
| `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` — Contracts retrieved successfully

| Field | Type | Required |
| --- | --- | --- |
| `data` | `array` | Yes |
| `data[].abi` | `object, nullable` |  |
| `data[].address` | `string` | Yes |
| `data[].block_number` | `integer (int32)` | Yes |
| `data[].created_by` | `string` | Yes |
| `data[].decimals` | `integer (int32), nullable` |  |
| `data[].erc1155` | `boolean` | Yes |
| `data[].erc165` | `boolean` | Yes |
| `data[].erc20` | `boolean` | Yes |
| `data[].erc721` | `boolean` | Yes |
| `data[].input` | `string` | Yes |
| `data[].name` | `string, nullable` |  |
| `data[].owner` | `string, nullable` |  |
| `data[].symbol` | `string, nullable` |  |
| `data[].timestamp` | `string (date-time)` | Yes |
| `data[].transaction_hash` | `string` | Yes |
| `data[].uniswap_v2` | `boolean` | Yes |
| `data[].uniswap_v3` | `boolean` | Yes |
| `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 |

**Example response**

```json
{}
```

### Other responses

| Status | Meaning |
| --- | --- |
| `400` | Bad request |
| `404` | Contracts 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).
