Enable Smart OCR with one-line API

Help your users overcome manual data entry by extracting data from uploaded document and autofilling into fields.

Invoice

Receipt

Delivery order

const HOST_URL = "https://services.getbeed.com/api/v1";

async function extractInvoice(apiKey, file) {
    const url = `${HOST_URL}/external/extraction/new?type=INVOICE`;
    const formData = new FormData();
    formData.append("file", file);

    const response = await fetch(url, {
        method: "POST",
        headers: { "x-api-key": apiKey },
        body: formData
    });

    if (!response.ok) throw new Error(`Failed: ${response.status}`);
    return await response.json();
}

Invoice

Receipt

Delivery order

Invoice

Receipt

Delivery order

Features

Pre-built documents ready to use

Instantly deploy Smart OCR with our library of customizable, ready-to-use templates for any industry.

Features

Pre-built documents ready to use

Instantly deploy Smart OCR with our library of customizable, ready-to-use templates for any industry.

Use Cases

Use Cases

Use Cases

Process a custom document?
We'll set it up in 6 hours.

Provide us with 20 sample documents and a list of fields you would like to capture.

©2023 Beed Global Inc · All rights reserved.

©2023 Beed Global Inc · All rights reserved.