Antibiotics Data
Information about antibiotics, inlcuding their chemical and physical properties, pharmacology, and mechanism of action.
Data Type: antibiotics
Primary Key: pubchem_cid
Attributes
-
_version_
(
number)
-
antibiotic_name
(
case insensitive string)
-
atc_classification
(
array of strings)
-
canonical_smiles
(
string)
-
cas_id
(
string)
-
date_inserted
(
date)
-
date_modified
(
date)
-
description
(
array of strings)
-
drugbank_interactions
(
array of strings)
-
inchi_key
(
string)
-
isomeric_smiles
(
string)
-
mechanism_of_action
(
array of strings)
-
molecular_formula
(
string)
-
molecular_weight
(
string)
-
pharmacological_classes
(
array of strings)
-
pharmacology
(
array of strings)
-
pubchem_cid
*
(
string)
-
pubchem_cid_i
(
integer)
-
synonyms
(
array of case insensitive strings)
API
GET :pubchem_cid
Retrieve a antibiotics data object by pubchem_cid
EXAMPLE
https://www.bv-brc.org/api/antibiotics/1046
Try It!
QUERY :query
Query for antibiotics data objects with an RQL Query
Return Formats
Requests may include an HTTP ACCEPT header from this list to transform the data into the requested type.
-
application/json - Returns results as an array of JSON objects
-
application/solr+json - Results results in SOLR JSON response format
-
text/csv - Returns results in Comma Separated values (CSV) format. Columns are separated by ','. Multi-value columns are separated by ';'. Rows are separated by new line
-
text/tsv - Returns results in Tab Separated values (TSV) format. Columns are separated by a tab. Multi-value columns are separated by ';'. Rows are separated by new line
-
application/vnd.openxmlformats - Returns objects as an MS Excel document
EXAMPLES
- Query for antibiotics data objects with a pubchem_cid equal to 1046. Return results as a JSON Array.
https://www.bv-brc.org/api/antibiotics/?eq(pubchem_cid,1046)
Try It!
- Query for antibiotics related to tuberculosis. Return as JSON
https://www.bv-brc.org/api/antibiotics/?keyword(tuberculosis)&http_accept=application/json
Try It!