> For the complete documentation index, see [llms.txt](https://obytejs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obytejs.com/0.1.17/api/get-attestation.md).

# Get attestation

### Example

```javascript
const params = {
  attestor_address: 'H5EZTQE7ABFH27AUDTQFMZIALANK6RBG',
  field: 'email',
  value: 'fabien@bonustrack.co'
};

client.api.getAttestation(params, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});
```

### Returns

```
7SEJqVRpog8Ezn5A3PSDX+h3iIYMfJaUsozoUlrsm+o=
```

### **Learn more**

* "23. Attestations" (page 32) <https://obyte.org/Byteball.pdf>
