# Fetch Delegations

**getIncomingDelegations**( `to`: <mark style="color:blue;">string</mark> ) ⇒ Promise< <mark style="color:blue;">V2Delegation\[]</mark> >

&#x20;       Returns an array of Delegation items

<table data-header-hidden><thead><tr><th width="97"></th><th></th></tr></thead><tbody><tr><td><strong>to</strong></td><td>The address to retrieve delegations for</td></tr></tbody></table>

**getOutgoingDelegations**( `from`: <mark style="color:blue;">string</mark> ) ⇒ Promise< <mark style="color:blue;">V2Delegation\[]</mark> >

&#x20;       Returns an array of Delegation items

<table data-header-hidden><thead><tr><th width="97"></th><th></th></tr></thead><tbody><tr><td><strong>from</strong></td><td>The address to retrieve delegations for</td></tr></tbody></table>

#### Usage Example

```javascript
const to = "0x0000000000000000000000000000000000000003";
const from = "0x0000000000000000000000000000000000000001";
const incoming = await v2.getIncomingDelegations(to);
const outgoing = await v2.getOutgoingDelegations(from);
```
