2mo
  • POST /crystal-gen/create-cif

    Generate CIF file from crystal structure description

    Parameters

    ouro-route-org-id

    in header

    ouro-route-team-id

    in header
    const url = 'https://api.ouro.foundation/routes/mmoderwell/crystal-gen/create-cif';
    const options = {
      method: 'POST',
      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));