ISBN Converter API

Use our API to convert between ISBN 10, ISBN 13, EAN, UPC programmatically.

API access requires a Business Plan.

The Business Plan allows you to create your own API keys and make requests to our high performance ISBN converter API.

See Plans

API Endpoints

Full Conversion

Endpoint: /v1/convert/{code}

Method: GET

Description: Convert a given code (ISBN-10, ISBN-13, EAN, ASIN, or UPC) to all other applicable formats.

Parameters:

Response Fields:

Example Request:

https://api.isbnconverter.com/v1/convert/9780262033848?key=YOUR_API_KEY

Example Response:

{
	"code": "9780262033848",
    "ean": "9780262033848",
    "isbn13": "9780262033848",
    "isbn10": "0262033844",
    "asin": "0262033844",
    "upc": ""
}

Single Format Conversion

Endpoint: /v1/convert/{code}/{format}

Method: GET

Description: Convert a given code (ISBN-10, ISBN-13, EAN, ASIN, or UPC) to a single specified format. {format} can be one of: isbn10, isbn13, ean, upc, asin.

Parameters:

Response Fields:

Example Request:

https://api.isbnconverter.com/v1/convert/9798895653104/asin?key=YOUR_API_KEY

Example Response:

{
	"code": "9798895653104",
    "asin": "B0DZ1QT4JV"
}