Convert

Convert Html to Markdown

POST https://api.fluxpoint.dev/convert/html-markdown

Convert html to markdown by giving the API some html string content.

Headers

Request Body

{
    "markdown": "# Hello"
}

Convert Markdown to Html

POST https://api.fluxpoint.dev/convert/markdown-html

Convert markdown to html by giving the API some markdown string content.

Headers

Request Body

{
    "html": "<h1>Hello</h1>"
}

Convert Image to png

POST https://api.fluxpoint.dev/convert/image-png

Convert given image data to png, max file size is 15 MB.

Query Parameters

Headers

Request Body

[ Image Data as Stream/Bytes ]

Convert Image to jpg

POST https://api.fluxpoint.dev/convert/image-jpg

Convert given image data to jpg, max file size is 15 MB.

Query Parameters

Headers

Request Body

[ Image Data as Stream/Bytes ]

Convert Image to webp

POST https://api.fluxpoint.dev/convert/image-webp

Convert given image data to webp, max file size is 15 MB.

Query Parameters

Headers

Request Body

[ Image Data as Stream/Bytes ]

Last updated