# Q\&A

## What is request cost?

Every API endpoint documentation has the "Request cost formula" section describing how the "cost" is calculated. For most API requests it's always 1. It's more than 1 in cases when you're requiring additional data (e.g. when you're requesting data on an Ethereum address, and you're also requesting its ERC-20 token balances).

{% hint style="info" %}
Example: **Request cost** is $$0 < x \leq 10 \Rightarrow \lim\_{n \to x}1 + (0.1 \* (n - 1))$$&#x20;

You want to send 10 addresses/blocks/transactions:

$$x = 10 \Rightarrow \lim\_{n \to 10}1 + (0.1 \* (10 - 1)) \Rightarrow 1 + (0.1 \* (10 - 1)) = 1.9$$&#x20;

You will have a request cost of **1.9**
{% endhint %}

## How many request are I limit to with the free tier?

You are limitied up to 1440 requests a day. With an API key you could do more than 1440 requests a day

## When do the request counter reset?

The daily request counter is reset at 00:00 UTC every day.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blockchair.vfiles.no/q-and-a.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
