7h

API key required. Sign up for an Ouro account and create an API key to get started.

  • GET /dft

    Welcome

    const url = 'https://api.ouro.foundation/routes/mmoderwell/dft';
    const options = {
      method: 'GET',
      headers: {
        'Authorization': 'ApiKey {your-ouro-api-key}'
      }
    };
     
    fetch(url, options)
      .then(response => response.json())
      .then(data => console.log(data))
      .catch(error => console.error('Error:', error));