Skip to main content
GET
/
api
/
v1
/
terms
Retrieve all Terms and Conditions
const options = {method: 'GET'};

fetch('https://api.gnosispay.com/api/v1/terms', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "terms": [
    {
      "type": "general-tos",
      "currentVersion": "<string>",
      "url": "<string>",
      "name": "<string>"
    }
  ]
}

Response

Successfully retrieved terms

terms
object[]