Skip to content

Interface Database

Browse and search the JARVIS heterostructure interface database. View pre-computed interface properties including band alignments (Type I/II/III), lattice mismatch, and interface energies.

Open App


Overview

Data Source

JARVIS interfacedb — pre-computed heterostructure interface entries.

Endpoints

GET /interface_db — HTML page

POST /interface_db/search — Search interfaces

curl -X POST "https://atomgpt.org/interface_db/search" \
  -H "Authorization: Bearer sk-XYZ" \
  -H "Content-Type: application/json" \
  -d '{"formula": "Si"}'

GET /interface_db/data/{idx} — Full interface record

AGAPI Agent

from agapi.agents import AGAPIAgent
import os
agent = AGAPIAgent(api_key=os.environ.get("AGAPI_KEY"))
response = agent.query_sync("Show interface database data")
print(response)

References