API દસ્તાવેજ

વસ્તુ માહિતી માટે મુક્ત REST API. API કી જરૂરી નથી.

API કી જરૂરી નથી બધા સ્ત્રોતો માટે CORS સક્રિય થયેલ છે JSON
https://api.periodictableofelements.org

આ API ખાનગી, શૈક્ષણિક, અને વાણિજ્યિક પ્રોજેક્ટ્સ માટે વાપરવા માટે મુક્ત છે. અમે ફક્ત પૂછીએ છીએ કે તમે PeriodicTableOfElements.org ને પાછા ક્યાંક તમારા કાર્યક્રમ અથવા વેબસાઇટમાં કડી સમાવે છે.

ઉદાહરણ અધિકાર:

<a href="https://periodictableofelements.org">Data from PeriodicTableOfElements.org</a>

અથવા સાદા લખાણમાં:

Data provided by PeriodicTableOfElements.org

અંતબિંદુઓ

GET /elements/

પરમાણુ વજન, વર્ગ, ઇલેક્ટ્રોન રૂપરેખાંકન, ઉકળતા/ ઉકળતા બિંદુઓ અને કોષ્ટક દેખાવ માટે જાળીની સ્થિતિઓ જેવા મહત્ત્વના ગુણધર્મો સાથે બધા ૧૧૮ તત્વોને પાછા આપે છે.

Rate limit: 200/hr
ઉદાહરણ જવાબ
[
  {
    "atomic_number": 1,
    "symbol": "H",
    "name": "Hydrogen",
    "slug": "hydrogen",
    "atomic_mass": 1.008,
    "category": "nonmetal",
    "block": "s",
    "group_number": 1,
    "period": 1,
    "state_at_room_temp": "gas",
    "electronegativity": 2.2,
    "ionization_energy": 1312.0,
    "electron_affinity": -73.0,
    "atomic_radius": 53,
    "density": 0.00008988,
    "melting_point": 14.01,
    "boiling_point": 20.28,
    "discovery_year": 1766,
    "category_color": "#2ecc71",
    "cpk_hex_color": "FFFFFF",
    "grid_row": 1,
    "grid_column": 1,
    "electrons_per_shell": [1],
    "electron_configuration_semantic": "1s1"
  },
  ...
]
પ્રયત્ન કરો
fetch('https://api.periodictableofelements.org/elements/')
  .then(r => r.json())
  .then(data => console.log(data));
GET /elements/{atomic_number}/

એક જ તત્વ માટે સંપૂર્ણ માહિતી પાછી આપે છે, બધા ક્ષેત્રો સમાવે છે: ભૌતિક ગુણધર્મો, શોધ માહિતી, આઇસોટોપ, વપરાશ, મજાનાં તથ્યો, અને વધુ.

Rate limit: 300/hr
Example Response — /elements/79/
{
  "atomic_number": 79,
  "symbol": "Au",
  "name": "Gold",
  "slug": "gold",
  "atomic_mass": 196.9666,
  "category": "transition_metal",
  "block": "d",
  "group_number": 11,
  "period": 6,
  "state_at_room_temp": "solid",
  "electronegativity": 2.54,
  "density": 19.3,
  "melting_point": 1337.33,
  "boiling_point": 3129.0,
  "discovery_year": -2500,
  "discovered_by": "Ancient civilizations",
  "electron_configuration": "1s2 2s2 2p6 3s2 3p6 3d10 4s2 4p6 4d10 5s1 4f14 5p6 5d10 6s1",
  "electron_configuration_semantic": "[Xe] 4f14 5d10 6s1",
  "oxidation_states": "+1, +3",
  "is_radioactive": false,
  "is_synthetic": false,
  ...
}
પ્રયત્ન કરો
fetch('https://api.periodictableofelements.org/elements/79/')
  .then(r => r.json())
  .then(data => console.log(data));
GET /elements/quiz/

તત્વો વિશે અનિચ્છનીય પ્રશ્ન પાછો આપે છે. પ્રશ્ન પ્રકારો સમાવે છે: સંજ્ઞા ઓળખ, પરમાણુ સંખ્યા શોધ, વર્ગ વર્ગીકરણ, અને ગુણધર્મ આધારિત સંકેતો.

Rate limit: 300/hr
ઉદાહરણ જવાબ
{
  "type": "symbol",
  "question": "What element has the symbol Fe?",
  "choices": [
    {"name": "Iron", "atomic_number": 26},
    {"name": "Fluorine", "atomic_number": 9},
    {"name": "Francium", "atomic_number": 87},
    {"name": "Fermium", "atomic_number": 100}
  ],
  "answer": 26
}
પ્રયત્ન કરો
fetch('https://api.periodictableofelements.org/elements/quiz/')
  .then(r => r.json())
  .then(data => console.log(data));
GET /elements/element-of-the-day/

આજે પ્રદર્શિત થયેલ ઘટક પાછો આપે છે. ઘટક દરરોજ બદલાય છે અને બધા ૧૧૮ ઘટકોમાંથી પસાર થાય છે. સાર અને મજાનાં તથ્યો સમાવે છે.

Rate limit: 200/hr
ઉદાહરણ જવાબ
{
  "atomic_number": 6,
  "symbol": "C",
  "name": "Carbon",
  "slug": "carbon",
  "category": "nonmetal",
  "category_color": "#2ecc71",
  "summary": "Carbon is a chemical element...",
  "fun_fact": "Carbon can form nearly 10 million different compounds...",
  "atomic_mass": 12.011,
  "discovery_year": -3750,
  "date": "2026-03-29"
}
પ્રયત્ન કરો
fetch('https://api.periodictableofelements.org/elements/element-of-the-day/')
  .then(r => r.json())
  .then(data => console.log(data));
GET /elements/molar-mass/?formula={formula}

રાસાયણિક સમીકરણના મોલર દ્રવ્યની ગણતરી કરે છે. કૌંસ અને ઉપસૂચકોને આધાર આપે છે (દા. ત., Ca( OH)2, H2SO4). તત્વ દ્વારા વિભાજન પાછું આપે છે.

Rate limit: 300/hr
Example Response — /elements/molar-mass/?formula=H2O
{
  "formula": "H2O",
  "molar_mass": 18.015,
  "breakdown": [
    {
      "symbol": "H",
      "count": 2,
      "atomic_mass": 1.008,
      "subtotal": 2.016
    },
    {
      "symbol": "O",
      "count": 1,
      "atomic_mass": 15.999,
      "subtotal": 15.999
    }
  ]
}
પ્રયત્ન કરો
fetch('https://api.periodictableofelements.org/elements/molar-mass/?formula=H2O')
  .then(r => r.json())
  .then(data => console.log(data));
GET /elements/export/json/

બધા ૧૧૮ તત્વોને બંધારણ થયેલ JSON ફાઇલ તરીકે ડાઉનલોડ કરે છે. પરમાણુ ગુણધર્મો, શોધ જાણકારી, ઇલેક્ટ્રોન રૂપરેખાંકનો અને વધુ સમાવે છે.

Rate limit: 20/hr પાછું આપે છે: કાર્યક્રમ/json જોડાણ
સીધું ડાઉનલોડ કરો
https://api.periodictableofelements.org/elements/export/json/
GET /elements/export/csv/

CSV ફાઈલ તરીકે બધા ૧૧૮ ઘટકોને ડાઉનલોડ કરે છે. JSON નિકાસ તરીકે સમાન ક્ષેત્રો, સ્પ્રેડશીટ્સ અને માહિતી વિશ્લેષણ માટે યોગ્ય છે.

Rate limit: 20/hr પાછું આપે છે: લખાણ/csv જોડાણ
સીધું ડાઉનલોડ કરો
https://api.periodictableofelements.org/elements/export/csv/

દર મર્યાદાઓ

Endpoint Limit
/elements/ 200 requests/hour
/elements/{n}/ 300 requests/hour
/elements/quiz/ 300 requests/hour
/elements/element-of-the-day/ 200 requests/hour
/elements/molar-mass/ 300 requests/hour
/elements/export/json/ 20 requests/hour
/elements/export/csv/ 20 requests/hour

દર મર્યાદા પ્રતિ IP સરનામાં છે. મર્યાદાને વટાવીને HTTP 429 (બહુ બધી વિનંતી) પાછું આપે છે.

કોડ ઉદાહરણો

// Fetch all elements
fetch('https://api.periodictableofelements.org/elements/')
  .then(res => res.json())
  .then(elements => {
    console.log(`Loaded ${elements.length} elements`);
    elements.forEach(el => {
      console.log(`${el.symbol} - ${el.name} (${el.atomic_mass})`);
    });
  });

// Get a single element
fetch('https://api.periodictableofelements.org/elements/79/')
  .then(res => res.json())
  .then(gold => {
    console.log(`${gold.name}: ${gold.atomic_mass} u`);
  });

// Calculate molar mass
fetch('https://api.periodictableofelements.org/elements/molar-mass/?formula=H2SO4')
  .then(res => res.json())
  .then(data => {
    console.log(`${data.formula}: ${data.molar_mass} g/mol`);
  });

// Get element of the day
fetch('https://api.periodictableofelements.org/elements/element-of-the-day/')
  .then(res => res.json())
  .then(el => {
    console.log(`Today's element: ${el.name} (${el.symbol})`);
  });
# Fetch all elements
import requests

response = requests.get('https://api.periodictableofelements.org/elements/')
elements = response.json()
print(f'Loaded {len(elements)} elements')

for el in elements:
    print(f"{el['symbol']} - {el['name']} ({el['atomic_mass']})")

# Get a single element
gold = requests.get('https://api.periodictableofelements.org/elements/79/').json()
print(f"{gold['name']}: {gold['atomic_mass']} u")

# Calculate molar mass
data = requests.get(
    'https://api.periodictableofelements.org/elements/molar-mass/',
    params={'formula': 'H2SO4'}
).json()
print(f"{data['formula']}: {data['molar_mass']} g/mol")

# Get element of the day
el = requests.get(
    'https://api.periodictableofelements.org/elements/element-of-the-day/'
).json()
print(f"Today's element: {el['name']} ({el['symbol']})")

માહિતી ડાઉનલોડ કરો

JSON

બધા ૧૧૮ ઘટકો સંપૂર્ણ ગુણધર્મો સાથે. વેબ કાર્યક્રમો અને સ્ક્રિપ્ટો માટે આદર્શ.

JSON ડાઉનલોડ કરો

CSV ફાઇલ

સ્પ્રેડશીટ-મિત્રતાપૂર્ણ બંધારણ. Excel, Google Sheets, અથવા Pandas માં ખોલો.

CSV ડાઉનલોડ કરો