# Testnet

{% hint style="info" %}
**Need Testnet FETCH?**

Reach out to the Fetch team on [Telegram](https://t.me/fetchoracle).
{% endhint %}

For `testnet`, you'll need to use the Fetch Oracle addresses corresponding to the `testnet` deployment.  These can be found on the [Contracts Reference](/the-basics/contract-addresses.md) page.

### Reference Example:

```solidity
pragma solidity >=0.8.0;

import "usingfetch/contracts/UsingFetch.sol";

contract MyContract is UsingFetch {

  constructor(address payable _fetchAddress) UsingFetch(_fetchAddress) {

  }

  // ...

}
```

`Testnet` is a good place to simulate production use of Fetch Oracle. This requires the user to specify the data they want and incentivize Fetch Oracle's network of reporters to *fetch* it.  You can even run your own reporter if desired. &#x20;

Next steps:

* [Create a query](/getting-data/creating-a-query.md) (or use an [existing query](https://github.com/fetchoracle/dataSpecs/tree/main/types))


---

# 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.fetchoracle.com/getting-data/testnet.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.
