Skip to main content
GET
/
api
/
v1
/
terms
Retrieve all Terms and Conditions
const url = 'https://api.gnosispay.com/api/v1/terms';
const options = {method: 'GET', body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "terms": [
    {
      "type": "general-tos",
      "currentVersion": "TOS_GENERAL_VERSION_1",
      "url": "https://help.gnosispay.com/hc/en-us/articles/43350967419412-Gnosis-Pay-Terms-of-Service",
      "name": "Gnosis Pay Terms of Service"
    },
    {
      "type": "card-monavate-tos",
      "currentVersion": "TOS_CARD_VERSION_1",
      "url": "https://help.gnosispay.com/hc/en-us/categories/41384871493524-Legal-Terms-and-Policies",
      "name": "Monavate Cardholder Terms"
    },
    {
      "type": "cashback-tos",
      "currentVersion": "TOS_CASHBACK_2024-08-01",
      "url": "https://forum.gnosis.io/t/gip-110-should-the-gnosis-dao-create-and-fund-a-gnosis-pay-rewards-program-with-10k-gno/8837",
      "name": "Cashback Terms"
    },
    {
      "type": "privacy-policy",
      "currentVersion": "PRIVACY_POLICY_VERSION_1",
      "url": "https://help.gnosispay.com/hc/en-us/articles/39723694982548-Gnosis-Pay-Privacy-and-Cookies-Policy",
      "name": "Privacy and Cookies Policy"
    }
  ]
}

Response

Successfully retrieved terms

terms
object[]