Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/rsc-tools-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: RSC ChemSpider Compounds Filter Tools API
description: The RSC ChemSpider Compounds API provides programmatic access to the ChemSpider chemical database, which contains over 88 million unique chemical compounds. The API supports compound searching by name, SMILES, InChI, InChIKey, molecular formula, mass, and elemental composition. Authenticated users can retrieve compound records with detailed properties, fetch external references, images, and MOL files, and perform batch operations. A tools endpoint supports chemical format conversions and InChIKey validation. All requests require an API key obtained from the RSC Developer Portal.
version: '1'
contact:
name: RSC Developer Support
url: https://developer.rsc.org/
termsOfService: https://www.rsc.org/legal/
servers:
- url: https://api.rsc.org/compounds/v1
description: ChemSpider Production API
tags:
- name: Tools
description: Chemical format conversion and validation utilities.
paths:
/tools/convert:
post:
operationId: convertChemicalFormat
summary: Convert Chemical Format
description: 'Convert a chemical identifier from one format to another. Supported input/output formats include SMILES, InChI, InChIKey, and Mol. Valid conversion pairs include: InChI to InChIKey, InChI to Mol, InChI to SMILES, InChIKey to InChI, InChIKey to Mol, Mol to InChI, Mol to InChIKey, and SMILES to InChI.'
tags:
- Tools
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- input
- inputFormat
- outputFormat
properties:
input:
type: string
description: The chemical identifier to convert
inputFormat:
type: string
description: Input format of the identifier
enum:
- SMILES
- InChI
- InChIKey
- Mol
outputFormat:
type: string
description: Desired output format
enum:
- SMILES
- InChI
- InChIKey
- Mol
responses:
'200':
description: Converted chemical identifier
content:
application/json:
schema:
type: object
properties:
output:
type: string
description: The converted chemical identifier
'400':
description: Invalid input or unsupported conversion
'401':
description: Unauthorized
security:
- apiKeyAuth: []
/tools/validate/inchikey:
post:
operationId: validateInchikey
summary: Validate InChIKey
description: Validate whether a given string is a correctly formed InChIKey. Returns a boolean indicating validity.
tags:
- Tools
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- inchikey
properties:
inchikey:
type: string
description: The InChIKey string to validate
responses:
'200':
description: Validation result
content:
application/json:
schema:
type: object
properties:
valid:
type: boolean
description: Whether the InChIKey is valid
'401':
description: Unauthorized
security:
- apiKeyAuth: []
components:
securitySchemes:
apiKeyAuth:
type: apiKey
in: header
name: apikey
description: API key obtained from the RSC Developer Portal at developer.rsc.org. Register and create an application to receive an API key.