OECD QSAR Toolbox
The OECD's tool for chemicals evaluation — substance search (CAS/EC/SMILES), chemical properties (with Klimisch reliability scores) and GHS classification. Status: stub until an ECHA licence and a local Toolbox server instance are configured (QSAR_TOOLBOX_BASE_URL + QSAR_TOOLBOX_TOKEN). Tracked in #2448.
—
Data volume
Quarterly
Updates
5
MCP tools
{
"data": "..."
}MCP integration
API endpoints
/healthHelsesjekk
Show curl example
# GET https://data.ketl.no/api/connectors/qsar-toolbox/health
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/qsar-toolbox/health"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/substancesRequires configurationKjemikaliesøk
- q optional
- Stoffnavn (minst én av q/cas/ec)
q=benzene - cas optional
- CAS-nummer
cas=71-43-2 - ec optional
- EC-nummer
ec=200-753-7
Show curl example
# GET https://data.ketl.no/api/connectors/qsar-toolbox/substances
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/qsar-toolbox/substances"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/propertiesRequires configurationEgenskaper per substans
- toolboxId required
- Toolbox stoff-ID
toolboxId=abc-123 - property optional
- Egenskap å hente (f.eks. log_kow, melting_point)
property=log_kow
Show curl example
# GET https://data.ketl.no/api/connectors/qsar-toolbox/properties?toolboxId=abc-123
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/qsar-toolbox/properties?toolboxId=abc-123"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/classificationRequires configurationGHS/CLP-klassifisering
- toolboxId required
- Toolbox stoff-ID
toolboxId=abc-123
Show curl example
# GET https://data.ketl.no/api/connectors/qsar-toolbox/classification?toolboxId=abc-123
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/qsar-toolbox/classification?toolboxId=abc-123"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.