RSC · Example Payload

Rsc Convert Chemical Format Example

ChemistryCheminformaticsChemical DataScience

Rsc Convert Chemical Format Example is an example object payload from RSC, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.rsc.org/compounds/v1/tools/convert",
    "headers": {
      "apikey": "YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "input": "CC(=O)Oc1ccccc1C(=O)O",
      "inputFormat": "SMILES",
      "outputFormat": "InChI"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "output": "InChI=1S/C9H8O4/c1-6(10)13-8-5-3-2-4-7(8)9(11)12/h2-5H,1H3,(H,11,12)"
    }
  }
}