Skip to content

Periodic Table

Interactive periodic table with JARVIS property overlays. Backend provides per-element property statistics aggregated from JARVIS-DFT 3D (76K materials). Fully client-side visualization.

Open App


Overview

Interactive periodic table with JARVIS property overlays. Backend provides per-element property statistics aggregated from JARVIS-DFT 3D (76K materials). Fully client-side visualization.

Data Source

dft_3d (aggregated per-element stats)

Endpoints

  • GET /periodic_table
  • GET /periodic_table/stats

Request Models:

Authentication

All POST endpoints require Authorization: Bearer YOUR_TOKEN.

API Example

import requests

response = requests.get(
    "https://atomgpt.org/periodic_table/stats",
    headers={
        "Authorization": "Bearer sk-XYZ",
        "accept": "application/json",
    },
)
data = response.json()
print(data)

AGAPI Agent

from agapi.agents import AGAPIAgent
import os

agent = AGAPIAgent(api_key=os.environ.get("AGAPI_KEY"))
response = agent.query_sync("Show periodic table for Silicon")
print(response)

Reference

  • Comp. Mat. Sci. 259, 114063 (2025)