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/pubchem-utilities-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: PubChem PUG REST Compounds Utilities API
description: 'PUG REST is a REST-style version of PUG (Power User Gateway), a web interface for accessing PubChem data and services. PUG REST provides access to the data in PubChem Compounds as well as specialized chemical structure search services.
The service supports various input formats including chemical names, SMILES strings, InChI identifiers, and direct database identifiers. It can return data in multiple formats including JSON, XML, CSV, SDF, and PNG images.
'
version: 1.0.0
contact:
email: pubchem-help@ncbi.nlm.nih.gov
license:
name: Public Domain
url: https://www.ncbi.nlm.nih.gov/home/about/policies/
servers:
- url: https://pubchem.ncbi.nlm.nih.gov/rest/pug
description: PubChem PUG REST API
tags:
- name: Utilities
description: Utility operations
paths:
/standardize/smiles/{smiles}/{format}:
get:
tags:
- Utilities
summary: Standardize SMILES
description: Returns the standardized form of the input SMILES string
parameters:
- name: smiles
in: path
required: true
schema:
type: string
description: SMILES string to standardize
example: CCCC
- name: format
in: path
required: true
schema:
type: string
enum:
- SDF
- XML
- JSON
- JSONP
- ASNT
- ASNB
default: JSON
description: Output format
- name: include_components
in: query
schema:
type: boolean
default: true
description: Include components and neutralized forms
- name: callback
in: query
schema:
type: string
description: Callback function name for JSONP format
responses:
'200':
description: Successful response
content:
chemical/x-mdl-sdfile:
schema:
type: string
application/json:
schema:
type: object
'400':
$ref: '#/components/responses/BadRequest'
'503':
$ref: '#/components/responses/ServiceUnavailable'
components:
responses:
ServiceUnavailable:
description: Too many requests or server is busy, retry later
content:
application/json:
schema:
$ref: '#/components/schemas/Fault'
application/xml:
schema:
$ref: '#/components/schemas/Fault'
text/html:
schema:
type: string
BadRequest:
description: Request is improperly formed (syntax error in the URL, POST body, etc.)
content:
application/json:
schema:
$ref: '#/components/schemas/Fault'
application/xml:
schema:
$ref: '#/components/schemas/Fault'
schemas:
Fault:
type: object
description: Error response
properties:
Fault:
type: object
properties:
Code:
type: string
Message:
type: string
Details:
type: array
items:
type: string