# Get Raw Pool APYs

<mark style="color:blue;">`GET`</mark> `https://illumigate.swivel.exchange/v1/pools/:address/apys?start=s&end=e`

This endpoint allows you to request a list of pool raw APYs for the specified interval.

#### Path Parameters

| Name                                      | Type   | Description       |
| ----------------------------------------- | ------ | ----------------- |
| address<mark style="color:red;">\*</mark> | string | The pool address. |

#### Query Parameters

| Name                                    | Type   | Description                                |
| --------------------------------------- | ------ | ------------------------------------------ |
| start<mark style="color:red;">\*</mark> | string | The start of the interval in unix seconds. |
| end                                     | string | The end of the interval in unix seconds.   |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "address": "0xA7711623026dAcDfcB0471185C6E9331f50cabff",
    "start": "1673308600",
    "end": "1673395300",
    "rawApys": [
        {
            "value": "0.000032123671905683",
            "created": "1673308800"
        },
        {
            "value": "0.000002851707469372",
            "created": "1673395200"
        }
    ]
}
```

{% endtab %}
{% endtabs %}


---

# 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.illuminate.finance/illuminapi/get/get-raw-pool-apys.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.
