url and pdf.pdf: true for the default behavior, or pass an object when you need PDF-specific options such as format, margin, scale, or pageRanges.The following examples show how to use the Microlink API with CLI, cURL, JavaScript, Python, Ruby, PHP & Golang, targeting 'https://rauchg.com/2014/7-principles-of-rich-web-applications' URL with 'pdf' API parameter:
CLI Microlink API example
microlink https://rauchg.com/2014/7-principles-of-rich-web-applications&pdfcURL Microlink API example
curl -G "https://api.microlink.io" \
-d "url=https://rauchg.com/2014/7-principles-of-rich-web-applications" \
-d "pdf=true"JavaScript Microlink API example
import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true
})Python Microlink API example
import requests
url = "https://api.microlink.io/"
querystring = {
"url": "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf": "true"
}
response = requests.get(url, params=querystring)
print(response.json())Ruby Microlink API example
require 'uri'
require 'net/http'
base_url = "https://api.microlink.io/"
params = {
url: "https://rauchg.com/2014/7-principles-of-rich-web-applications",
pdf: "true"
}
uri = URI(base_url)
uri.query = URI.encode_www_form(params)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
response = http.request(request)
puts response.bodyPHP Microlink API example
<?php
$baseUrl = "https://api.microlink.io/";
$params = [
"url" => "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf" => "true"
];
$query = http_build_query($params);
$url = $baseUrl . '?' . $query;
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET"
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #: " . $err;
} else {
echo $response;
}Golang Microlink API example
package main
import (
"fmt"
"net/http"
"net/url"
"io"
)
func main() {
baseURL := "https://api.microlink.io"
u, err := url.Parse(baseURL)
if err != nil {
panic(err)
}
q := u.Query()
q.Set("url", "https://rauchg.com/2014/7-principles-of-rich-web-applications")
q.Set("pdf", "true")
u.RawQuery = q.Encode()
req, err := http.NewRequest("GET", u.String(), nil)
if err != nil {
panic(err)
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println(string(body))
}import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true
})data.pdf.url.MQL installation
@microlink/mql:npm install @microlink/mql --saveHow PDF options work
true to a pdf object:{
url: 'https://rauchg.com/2014/7-principles-of-rich-web-applications',
pdf: {
format: 'A4',
margin: '1cm',
scale: 0.8
},
meta: false
}pdf.format=A4.The response
pdf field in the response contains the generated asset you will usually reuse:{
"status": "success",
"data": {
"pdf": {
"url": "https://microlink-cdn.s3.amazonaws.com/pdf/...",
"type": "pdf",
"size": 1357350,
"size_pretty": "1.36 MB"
}
}
}data.pdf.url directly. It is a CDN-hosted PDF URL you can store, cache, download, or embed elsewhere.Choose a delivery mode
| Need | Best option | Why |
|---|---|---|
| You want JSON plus PDF metadata | Default response | You get data.pdf.url, type, and size |
| You want the API URL itself to return the PDF file | embed: 'pdf.url' | The API URL behaves like a direct PDF download or preview URL |
Skip metadata for faster responses
The following examples show how to use the Microlink API with CLI, cURL, JavaScript, Python, Ruby, PHP & Golang, targeting 'https://rauchg.com/2014/7-principles-of-rich-web-applications' URL with 'pdf' & 'meta' API parameters:
CLI Microlink API example
microlink https://rauchg.com/2014/7-principles-of-rich-web-applications&pdfcURL Microlink API example
curl -G "https://api.microlink.io" \
-d "url=https://rauchg.com/2014/7-principles-of-rich-web-applications" \
-d "pdf=true" \
-d "meta=false"JavaScript Microlink API example
import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true,
meta: false
})Python Microlink API example
import requests
url = "https://api.microlink.io/"
querystring = {
"url": "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf": "true",
"meta": "false"
}
response = requests.get(url, params=querystring)
print(response.json())Ruby Microlink API example
require 'uri'
require 'net/http'
base_url = "https://api.microlink.io/"
params = {
url: "https://rauchg.com/2014/7-principles-of-rich-web-applications",
pdf: "true",
meta: "false"
}
uri = URI(base_url)
uri.query = URI.encode_www_form(params)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
response = http.request(request)
puts response.bodyPHP Microlink API example
<?php
$baseUrl = "https://api.microlink.io/";
$params = [
"url" => "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf" => "true",
"meta" => "false"
];
$query = http_build_query($params);
$url = $baseUrl . '?' . $query;
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET"
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #: " . $err;
} else {
echo $response;
}Golang Microlink API example
package main
import (
"fmt"
"net/http"
"net/url"
"io"
)
func main() {
baseURL := "https://api.microlink.io"
u, err := url.Parse(baseURL)
if err != nil {
panic(err)
}
q := u.Query()
q.Set("url", "https://rauchg.com/2014/7-principles-of-rich-web-applications")
q.Set("pdf", "true")
q.Set("meta", "false")
u.RawQuery = q.Encode()
req, err := http.NewRequest("GET", u.String(), nil)
if err != nil {
panic(err)
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println(string(body))
}import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true,
meta: false
})meta: false skips metadata extraction and is usually the biggest speedup for PDF-only requests.meta also accepts an object for selective extraction. See the meta reference.One important default: Print css
mediaType is 'print'. That means print stylesheets are applied automatically.mediaType: 'screen' in page preparation.Using the raw URL
https://api.microlink.io?url=https://rauchg.com/2014/7-principles-of-rich-web-applications&pdf=true&meta=falseembed=pdf.url in the delivery and embedding guide.Free tier and API key
x-api-key header:The following examples show how to use the Microlink API with CLI, cURL, JavaScript, Python, Ruby, PHP & Golang, targeting 'https://rauchg.com/2014/7-principles-of-rich-web-applications' URL with 'pdf', 'meta' & 'apiKey' API parameters:
CLI Microlink API example
microlink https://rauchg.com/2014/7-principles-of-rich-web-applications&pdf --api-key YOUR_API_TOKENcURL Microlink API example
curl -G "https://api.microlink.io" \
-H "x-api-key: YOUR_API_TOKEN" \
-d "url=https://rauchg.com/2014/7-principles-of-rich-web-applications" \
-d "pdf=true" \
-d "meta=false"JavaScript Microlink API example
import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true,
meta: false,
apiKey: "YOUR_API_TOKEN"
})Python Microlink API example
import requests
url = "https://api.microlink.io/"
querystring = {
"url": "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf": "true",
"meta": "false"
}
headers = {
"x-api-key": "YOUR_API_TOKEN"
}
response = requests.get(url, params=querystring, headers=headers)
print(response.json())Ruby Microlink API example
require 'uri'
require 'net/http'
base_url = "https://api.microlink.io/"
params = {
url: "https://rauchg.com/2014/7-principles-of-rich-web-applications",
pdf: "true",
meta: "false"
}
uri = URI(base_url)
uri.query = URI.encode_www_form(params)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['x-api-key'] = "YOUR_API_TOKEN"
response = http.request(request)
puts response.bodyPHP Microlink API example
<?php
$baseUrl = "https://api.microlink.io/";
$params = [
"url" => "https://rauchg.com/2014/7-principles-of-rich-web-applications",
"pdf" => "true",
"meta" => "false"
];
$query = http_build_query($params);
$url = $baseUrl . '?' . $query;
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: YOUR_API_TOKEN"
]
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #: " . $err;
} else {
echo $response;
}Golang Microlink API example
package main
import (
"fmt"
"net/http"
"net/url"
"io"
)
func main() {
baseURL := "https://api.microlink.io"
u, err := url.Parse(baseURL)
if err != nil {
panic(err)
}
q := u.Query()
q.Set("url", "https://rauchg.com/2014/7-principles-of-rich-web-applications")
q.Set("pdf", "true")
q.Set("meta", "false")
u.RawQuery = q.Encode()
req, err := http.NewRequest("GET", u.String(), nil)
if err != nil {
panic(err)
}
req.Header.Set("x-api-key", "YOUR_API_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println(string(body))
}import mql from '@microlink/mql'
const { data } = await mql('https://rauchg.com/2014/7-principles-of-rich-web-applications', {
pdf: true,
meta: false,
apiKey: "YOUR_API_TOKEN"
})What's next
- Page size and layout — control paper format, custom dimensions, margins, orientation, scale, and page ranges.
- Page preparation — choose print or screen CSS, wait for content, click UI elements, and inject CSS before printing.
- Delivery and embedding — choose between JSON + CDN URLs and direct PDF responses for downloads and previews.
- Caching and performance — tune freshness, cache behavior, and PDF generation speed.
- Private pages — generate PDFs from logged-in or header-dependent pages safely.
- Troubleshooting — fix missing content, wrong layout, timeouts, blocked sites, and plan-related errors.
See also
- Screenshot — if you need an image of the page instead of a printable document.
- Metadata — if you need link preview data alongside or instead of a PDF.