Search by InChI

POST /inchi

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

InChI

string

The International Chemical Identifier (full match only; should include "InChI=" prefix)

limit

integer

Optional parameter that specifies how many results should be returned. Valid values range from 1 to 100. Defaults to 10.

GraphQL schema

query ByInChI ($inchi: String!, $limit: Int = 10) {
    molecules (InChI: $inchi, limit: $limit) { # Here described fields to include in the response
        CID
        IUPAC
        SMILES
        InChI
        InChIKey
        synonyms
    }
}

Response

OK response from API:

Requests example

Last updated