# Our Chainlink Oracle

{% hint style="success" %}
Our Chainlink node has gone through Chainlink's review process, making it an officially reviewed Chainlink node! This means our Oracle is listed on [the official listing page](https://docs.chain.link/docs/decentralized-oracles-ethereum-mainnet).
{% endhint %}

## General information

Our Chainlink nodes are online and accepting requests on both Mainnet and Ropsten. For more information on how you can request data from our Chainlink nodes, please check out the official documentation:

{% embed url="<https://docs.chain.link/docs/contract-creators-overview>" %}
Follow the official documentation to learn how to use our Chainlink nodes
{% endembed %}

### Address and price

{% tabs %}
{% tab title="Mainnet" %}
**Oracle address:** `0x049Bd8C3adC3fE7d3Fc2a44541d955A537c2A484`\
**Price:** 0.1 LINK
{% endtab %}

{% tab title="Ropsten" %}
**Oracle address:** `0x1948C20CC492539968BB9b041F96D6556B4b7001`\
**Price:** 1 LINK
{% endtab %}
{% endtabs %}

## Job ids

### `HttpGet` -> `JsonParse` -> `EthBytes32`

{% tabs %}
{% tab title="Mainnet" %}
`0d21526754cc4cc3a53f1d4973454adc`
{% endtab %}

{% tab title="Ropsten" %}
`5ec95d6fcf8641eeb52a0f2f667f8f11`
{% endtab %}
{% endtabs %}

### `HttpPost` -> `JsonParse` -> `EthBytes32`

{% tabs %}
{% tab title="Mainnet" %}
`a9adb8bb48044961b0334eec95686afe`
{% endtab %}

{% tab title="Ropsten" %}
`69de7192bd36464d8a979ecf71ec96bb`
{% endtab %}
{% endtabs %}

### `HttpGet` -> `JsonParse` -> `Multiply` -> `EthInt256`

{% tabs %}
{% tab title="Mainnet" %}
`79d17c42a2694b408a6393a9ee8fbff2`
{% endtab %}

{% tab title="Ropsten" %}
`d0a996e4accd4796a2bcc418a6056012`
{% endtab %}
{% endtabs %}

### `HttpGet` -> `JsonParse` -> `Multiply` -> `EthUint256`

{% tabs %}
{% tab title="Mainnet" %}
`98839fc3b550436bbe752f82d7521843`
{% endtab %}

{% tab title="Ropsten" %}
`80fecd06d2e14c67a22cee5f9728e067`
{% endtab %}
{% endtabs %}

### `HttpGet` -> `JsonParse` -> `EthBool`

{% tabs %}
{% tab title="Mainnet" %}
`531efbbea5424b19bcbcb3f593cf9ac4`
{% endtab %}

{% tab title="Ropsten" %}
`fa6e09faa642407489d7ed43e6932ae8`
{% endtab %}
{% endtabs %}

{% hint style="info" %}
Do you need data from a private API or from an external adapter? Send an email to <business@fiews.io> and we'll figure out a plan!
{% endhint %}

## Supported parameters

### `HttpGet`

| Parameter     | Type                  | Description                                                                        |
| ------------- | --------------------- | ---------------------------------------------------------------------------------- |
| `get`         | string                | Takes a string containing the URL to make a `GET` request to                       |
| `headers`     | object                | Takes an object containing keys as strings and values as arrays of strings.        |
| `queryParams` | string *or* \[]string | Takes a string or array of strings for the URL's query parameters                  |
| `extPath`     | string *or* \[]string | Takes a slash delimited string or array of strings to be appended to the job's URL |

### `HttpPost`

| Parameter     | Type                  | Description                                                                        |
| ------------- | --------------------- | ---------------------------------------------------------------------------------- |
| `post`        | string                | Takes a string containing the URL to make a `POST` request to                      |
| `headers`     | object                | Takes an object containing keys as strings and values as arrays of strings.        |
| `queryParams` | string *or* \[]string | Takes a string or array of strings for the URL's query parameters                  |
| `extPath`     | string *or* \[]string | Takes a slash delimited string or array of strings to be appended to the job's URL |

### `JsonParse`

| Parameter | Type                  | Description                                                                                                                |
| --------- | --------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| `path`    | string *or* \[]string | Takes an array of strings, each string being the next key to parse out in the JSON object or a single dot-delimited string |

### `Multiply`

| Parameter | Type   | Description                         |
| --------- | ------ | ----------------------------------- |
| `times`   | number | The number to multiply the input by |
