RSC · Example Payload

Rsc Filter By Name Example

ChemistryCheminformaticsChemical DataScience

Rsc Filter By Name 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/filter/name",
    "headers": {
      "apikey": "YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "aspirin",
      "orderBy": "molecularWeight",
      "orderDirection": "ascending"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "queryId": "7d4a9f2c-1b3e-4d5f-8a2c-9e6b7c3d4e5f"
    }
  }
}