API Playground

Try every endpoint

Interactive tool for the Physon API. Pick an endpoint, edit the request body, run it, and copy the code snippet in your language of choice.

No API key detected in this browser. Public endpoints (like /molecular/catalog) work without one; POST endpoints need a key. Grab one at /signup.

Generate N 3D conformers from a SMILES string.

Code snippet

curl -X POST "https://sharoncs888--physon-mvp-api.modal.run/molecular/generate" \
    -H "Content-Type: application/json" \
    -H "X-API-Key: YOUR_API_KEY" \
    -d '{
  "smiles": "CCCCCCC",
  "n_conformers": 10,
  "seed": 42
}'