Conversions


Try it

Run this code here, in a console or from any site:

fetch('https://api.convertkr.com/conversions/1').then(response => response.json()) .then(json => console.log(json))
{}

Description

This API allows users to convert files between different formats, such as converting a PDF document to an image, or transforming images like JPEG or PNG files into PDFs. It’s designed to help users handle various file types and convert them for specific use cases.

Routes

You can use https for your requests.

GET

/conversions

GET

/conversions/1

POST

/conversions

PUT

/conversions/1

DELETE

/conversions/1

Note: see guide for usage examples.

Splits


Try it

Run this code here, in a console or from any site:

fetch('https://api.convertkr.com/splits/1').then(response => response.json()) .then(json => console.log(json))
{}

Description

This API enables users to split documents into multiple parts based on page ranges or specific criteria. For example, users can break a PDF document into individual pages or specific sections, which is helpful for extracting specific content from larger files.

Routes

You can use https for your requests.

GET

/splits

GET

/splits/1

POST

/splits

PUT

/splits/1

DELETE

/splits/1

Note: see guide for usage examples.

Merges


Try it

Run this code here, in a console or from any site:

fetch('https://api.convertkr.com/merges/1').then(response => response.json()) .then(json => console.log(json))
{}

Description

This API allows users to merge multiple files into a single document. For instance, users can combine several PDF documents into one or merge multiple images into a single PDF file. It’s useful for compiling related files into one cohesive document for easier management and sharing.

Routes

You can use https for your requests.

GET

/merges

GET

/merges/1

POST

/merges

PUT

/merges/1

DELETE

/merges/1

Note: see guide for usage examples.