# Retrieving Storage Address

You can use a view function in the Feeder contract to retrieve the current storage contract address for a particular pair:

`cast call $PROXY_ADDRESS 'getPairStorageAddress(string) returns (address)' $PAIR_NAME --rpc-url=$RPC_URL`

If you have your Alchemy key stored in `$ALCHEMY_KEY` variable then you can use the following command to get the address of the ETHUSDC storage on Arbitrum:

`cast call 0xebAfeEB70704423190B1183C017D0eB8Ab2ea80A 'getPairStorageAddress(string) returns (address)' ETHUSDC --rpc-url=https://arb-mainnet.g.alchemy.com/v2/$ALCHEMY_KEY`

Now you can visit the [Storage Contract methods](/docs/using-data-feeds/storage-contract-methods.md) page and check out the storage interface.


---

# 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://diffusefi.gitbook.io/docs/using-data-feeds/retrieving-storage-address.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.
