Learn how to interact with this file using the Ouro SDK or REST API.
API access requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY in your environment.
Retrieve file
Get file metadata including name, visibility, description, file size, and other asset properties.
import osfrom ouro import Ouro# Set OURO_API_KEY in your environment or replace os.environ.get("OURO_API_KEY")ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))file_id = "9f322585-eb9b-4d71-b834-3535ad3f51fe"# Retrieve file metadatafile = ouro.files.retrieve(file_id)print(file.name, file.visibility)print(file.metadata)
Read file data
Get a URL to download or embed the file. For private assets, the URL is temporary and will expire after 1 hour.
# Get signed URL to download the filefile_data = file.read_data()print(file_data.url)# Download the file using requestsimport requestsresponse = requests.get(file_data.url)with open('downloaded_file', 'wb') as output_file: output_file.write(response.content)
Update file
Update file metadata (name, description, visibility, etc.) and optionally replace the file data with a new file. Requires write or admin permission.
# Update file metadataupdated = ouro.files.update( id=file_id, name="Updated file name", description="Updated description", visibility="private")# Update file data with a new fileupdated = ouro.files.update( id=file_id, file_path="./new_file.txt")
Delete file
Permanently delete a file from the platform. Requires admin permission. This action cannot be undone.
# Delete a file (requires admin permission)ouro.files.delete(id=file_id)
Calculate energy above the convex hull
file.cif→file.html
2.5k uses
Predict the Curie temperature of a material
file.cif→JSON
2.3k uses
Relax a crystal structure
file.cif→file.cif
1.7k uses
Calculate the estimated raw material cost per kg
file.cif→JSON
1.6k uses
Calculate magnetic saturation and related properties
file.cif→JSON
790 uses
Calculate phonon dispersion and band structure
file.cif→file.png
568 uses
Calculate magnetic anisotropy energy (MAE)
file.cif→JSON
139 uses
Create a supercell from a material
file.cif→file.cif
135 uses
Get basic structural information from a CIF file
file.cif→JSON
121 uses
Estimate ZT and key thermoelectric properties
file.cif→JSON
76 uses
Structure relaxation via NequIP-OAM-XL
file.cif→file.cif
31 uses
Relax a crystal structure with animation
file.cif→file.mp4
27 uses
Create an interstitially doped structure
file.cif→file.cif
21 uses
Predict energy above the convex hull
file.cif→JSON
20 uses
Predict total magnetic moment per cell
file.cif→JSON
20 uses
Predict superconducting critical temperature
file.cif→JSON
17 uses
Predict formation energy per atom (MP dataset)
file.cif→JSON
16 uses
Relax a crystal structure and publish results
file.cif→post
15 uses
Calculate magnetic anisotropy energy
file.cif→JSON
14 uses
Predict Seebeck coefficient and band gap
file.cif→JSON
10 uses
Predict formation energy per atom (optB88vdW)
file.cif→JSON
8 uses
Simulate an X-ray diffraction pattern
file.cif→file.xy
6 uses
Synthesis report from CIF file
file.cif→file.html
5 uses
Check phonon stability
file.cif→file.png
3 uses
Predict band gap using the TBmBJ functional
file.cif→JSON
2 uses
Predict static dielectric function (εx)
file.cif→JSON
2 uses
Predict average electron effective mass
file.cif→JSON
1 use
Predict total energy per atom (optB88vdW)
file.cif→JSON
1 use
Predict HOMO orbital energy (molecules)
file.cif→JSON
Predict maximum CO₂ adsorption capacity (MOFs)
file.cif→JSON
Predict COOH adsorption energy (AGRA)
file.cif→JSON
Predict Voigt bulk modulus
file.cif→JSON
Predict phonon density of states
file.cif→JSON
Predict HOMO-LUMO gap (molecules)
file.cif→JSON
Predict adsorption energy (OCP 2020 full)
file.cif→JSON
Predict adsorption energy (OCP 2020, 10k subset)
file.cif→JSON
Predict exfoliation energy for layered materials
file.cif→JSON
Predict zero-point vibrational energy (molecules)
file.cif→JSON
Predict largest cavity diameter (MOFs)
file.cif→JSON
Predict CO₂ adsorption at 5 pressures (MOFs)
file.cif→JSON
Predict electronic DOS at Fermi level
file.cif→JSON
Predict maximum dielectric constant from DFPT
file.cif→JSON
Predict nitrogen adsorption energy (TinNet)
file.cif→JSON
Predict adsorption energy (OCP 2020, 100k subset)
file.cif→JSON
Predict p-type Seebeck coefficient
file.cif→JSON
Predict average hole effective mass
file.cif→JSON
Predict n-type Seebeck coefficient
file.cif→JSON
Predict CHO adsorption energy (AGRA)
file.cif→JSON
Generate surface slabs
file.cif→file.zip
Predict spectroscopic limited maximum efficiency
file.cif→JSON
Predict maximum piezoelectric strain coefficient dij
file.cif→JSON
Predict optimal k-point length for DFT convergence
Predict Debye temperature for superconductor analysis
file.cif→JSON
Predict LUMO orbital energy (molecules)
file.cif→JSON
Predict PBE band gap (MP dataset)
file.cif→JSON
Predict work function
file.cif→JSON
Predict OH adsorption energy (TinNet)
file.cif→JSON
Predict band gap using the optB88vdW functional
file.cif→JSON
Estimate minimum lattice thermal conductivity
file.cif→JSON
Predict OH adsorption energy (AGRA)
file.cif→JSON
Predict conduction band minimum
file.cif→JSON
Predict internal energy at 298.15 K (molecules)
file.cif→JSON
Predict valence band maximum
file.cif→JSON
Predict volumetric surface area (MOFs)
file.cif→JSON
Predict isotropic polarizability (molecules)
file.cif→JSON
Predict oxygen adsorption energy (TinNet)
file.cif→JSON
Predict maximum electric field gradient
file.cif→JSON
Predict pore limiting diameter (MOFs)
file.cif→JSON
Predict n-type thermoelectric power factor
file.cif→JSON
Predict oxygen adsorption energy (AGRA)
file.cif→JSON
Predict CO adsorption energy (AGRA)
file.cif→JSON
Predict Voigt shear modulus
file.cif→JSON
You've seen it all
Join to comment
2.44 KB
.cif file
Experimentally designed crystal asking for composition, space group, lattice params, and wyckoff positions from an LLM (Gemini 2.5 Pro here, thinking turned on)