# Output Reference

{{highlight:rgb(255, 255, 255)|The following table shows the fields returned by the API:}}
| Field Name | Description | Comment |
| --- | --- | --- |
| bias | Shows the detected political bias of the site |  |
| claim | Claim extracted from the original post text |  |
| verified | Indicates whether the extracted claim has been verified | possible values:true, false, unverified |
| references | List of sources cited to claim verification |  |
| text | Reference text supporting the claim verification |  |
| link | Reference link supporting the claim verification |  |

**Response example:**

```json
{
  "bias": "left",
  "claims": [
    {
      "claim": "Iran's Supreme Leader Ayatollah Ali Khamenei has l...",
      "verified": "true",
      "references": [
        {
          "text": "Iran leader Khamenei sees his inner circle hollowed out ...",
          "link": "https://www.reuters.com/world/middle-east/i..."
        }
      ]
    },
    {
      "claim": "The loss of these advisers has created significant..",
      "verified": "true",
      "references": [
        {
          "text": "Iran leader Khamenei sees his inner circle hollowed ou...",
          "link": "https://www.cnn.com/world/middle-east/iran-lead..."
        }
      ]
    }
  ]
}
```
