# Source

### List of Fields

Please note that fields not documented here may be out of date or deprecated.&#x20;

| **Field**     | **Type** | **Note**                                                                                             |
| ------------- | -------- | ---------------------------------------------------------------------------------------------------- |
| `siteUrl`     | String   | URL of the source                                                                                    |
| `displayName` | String   | Name of the source                                                                                   |
| `recipeUrl`   | String   | <p>URL of the recipe at the source. </p><p>Use this URL as a reference for cooking instructions.</p> |

### Example

Obtaining a recipe's source information.

{% tabs %}
{% tab title="Query" %}

```graphql
{
  recipe(id: "UmVjaXBlOjFkMWIzYzU4LTk3Y2MtNDJlMi05NGEyLTA0OTdjMjVjNjhjYQ==") {
    name
    source {
      siteUrl
      displayName
      recipeUrl
    }

  }
}
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
  "data": {
    "recipe": {
      "name": "Three Bean Salad With Corn & Peppers",
      "source": {
        "siteUrl": "triedandtasty.com",
        "displayName": "Tried and Tasty",
        "recipeUrl": "http://triedandtasty.com/three-bean-salad-with-corn-and-peppers-2/"
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}
