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

NameTypeDescription

Authorization*

Request Body

NameTypeDescription

html*

String

Convert this html to markdown

body

Json Key

Convert this html to markdown

{
    "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

NameTypeDescription

Authorization*

Request Body

NameTypeDescription

markdown

String

Convert this markdown to html

body

Json Key

{
    "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

NameTypeDescription

quality

Int

Set the image quality from 1 - 100

Headers

NameTypeDescription

Authorization*

Request Body

NameTypeDescription

Image Data*

File

Send the image to convert

[ 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

NameTypeDescription

quality

Int

Set the image quality from 1 - 100

Headers

NameTypeDescription

Authorization*

Request Body

NameTypeDescription

Image Data*

File

Send the image to convert

[ 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

NameTypeDescription

quality

Int

Set the image quality from 1 - 100

Headers

NameTypeDescription

Authorization*

Request Body

NameTypeDescription

Image Data*

File

Send the image to convert

[ Image Data as Stream/Bytes ]

Last updated