Documentation

Learn how to integrate with the GlotFiles API

Documentation

Getting Started

Welcome to the GlotFiles API! Generate polyglot files programmatically with simple HTTP requests.

Quick Start

Follow these steps to start using the GlotFiles API in minutes:

1

Create an Account

Register, login, and generate your first API key

2

Pick a Polyglot Type

Use GET /api/v1/types to see supported combinations

3

Generate a Polyglot

Send a multipart request to POST /api/v1/generate

Base URL

text
https://api.glotfiles.dev/api/v1

Basic Usage (cURL)

bash
curl -X POST "https://api.glotfiles.dev/api/v1/generate" \
  -H "X-API-Key: pk_live_your_api_key_here" \
  -F "type=pdf-html" \
  -F "file1=@document.pdf" \
  -F "file2=@page.html"