# RCDelegations

Although the Hive API generally allows you to retrieve information from the blockchain, there is no API call to easily know who has delegated RCs to whom.

Fortunately, HiveSQL allows you to retrieve related information thanks to the [TxCustoms](/technical-informations/operations/txcustoms.md) table which includes all creation, modification or removal of RC delegation operations carried out by users.

However, the main difficulty comes from the fact that you have to filter custom\_json operations, parse the JSON payload and perform computations with the retrieved operation to get the state of the delegation between accounts.

Due to all the technical reasons mentioned above, retrieving an accurate list of delegators or delegatees has become much more complex and resources consuming.

The non-consensus state table RCDelegations allows you to retrieve delegations data quickly and easily. It contains the list of all active delegations with the following info:

#### Columns

<table data-header-hidden><thead><tr><th>Name</th><th width="379">Description</th></tr></thead><tbody><tr><td>Name</td><td>Description</td></tr><tr><td>delegator</td><td>The account delegating Hive Power</td></tr><tr><td>delegatee</td><td>The account receiving Hive Power delegation</td></tr><tr><td>rc</td><td>The amount of RCs delegated</td></tr></tbody></table>


---

# 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://docs.hivesql.io/technical-informations/state-tables/rcdelegations.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.
