Textibility logo

Information extraction and rendering API

Textibility provides a simple, REST API for extracting information from images and documents in a number of formats and generating images and documents from structured data. With a simple, clean HTTP interface and some clever processing we can quickly and easily unlock information captured in photographs and file uploads.
A couple of examples supported by the API:
  • Extracting a barcode from a photograph.
  • Generating a barcode to point to a URL or describe a contact.
  • Extracting the text from a boarding pass or purchase receipt PDF.
  • Removing the last 4 pages from PDF file for privacy reasons.
  • Merging multiple PDF files into a single file.
  • Generating a PNG image from an SVG document.
  • Generating a PNG or PDF chart.

Details

All functionality is designed to be as straightforward to use as possible:
  • Barcode detection is orientation-independent: it doesn't matter whether or not the image is perfectly aligned vertically or horizontally.
  • The only barcode generation/decoding API with full support for PDF files: we'll extract images from PDF files and we'll return perfectly printable PDF content as well.
A couple of examples are shown below. You'll need an API key from Mashape to access the API.
curl -v https://ideasynthesis-textibility.p.mashape.com/barcode/generate -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -d "datatype=image/png" -d "content=http://web.mit.edu/" -d "width=300px" -d "type=QR" -d "errorcorrection=L"
curl -v https://ideasynthesis-textibility.p.mashape.com/barcode/decode -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/pdf" -X POST -T boardingpass.pdf
curl -v https://ideasynthesis-textibility.p.mashape.com/pdf/text -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/pdf" -X POST -T boardingpass.pdf
curl -v https://ideasynthesis-textibility.p.mashape.com/pdf/filterpages -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/pdf" -X POST -T text.pdf -H "X-Parameter-Pages: [12,13,14,15]"
curl -v https://ideasynthesis-textibility.p.mashape.com/pdf/lock -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/pdf" -X POST -T text.pdf -H "X-Parameter-PermissionsPassword: testpassword" -o locked.pdf
curl -v https://ideasynthesis-textibility.p.mashape.com/pdf/unlock -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/pdf" -X POST -T locked.pdf -H "X-Parameter-Password: testpassword" -o unlocked.pdf
curl -v https://ideasynthesis-textibility.p.mashape.com/pdf/merge -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -F "document=@file1.pdf" -F "document=@file2.pdf" -F "document=@file3.pdf" -o merged.pdf
curl -v https://ideasynthesis-textibility.p.mashape.com/svg/generate -H "X-Mashape-Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -d "datatype=image/png" -d "width=300px" -d "dpi=240" -d "content=<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\"><circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"red\" /></svg>"

Pricing

Billing for access to the API is provided via Mashape.

Ultra (Tera)

$270/month


Credits: 5000/day
$0.001 for each extra credit

Premium (Giga)

$90/month


Credits: 500/day
$0.005 for each extra credit

Basic (Mega)

$30.00/month


Credits: 100/day
$0.01 for each extra credit

Freemium (Kilo)

$0/month


Credits: 20/day
$0.02 for each extra credit
  • Each API call that generates a barcode consumes 1 credit.
  • Each API call that decodes a barcode from a single image consumes 1 credit.
  • For PDF barcode decoding, each page processed consumes a single credit.
  • For PDF text extraction, 1 credit is consumed for every 5 pages (so if a PDF document is 4 pages long, it will consume 1 credit, and if it is 11 pages long it will consume 3 credits).
  • For PDF locking, unlocking, filtering and merging, 1 credit is consumed for every 20 pages (so if the PDF document is 10 pages long, it will consume 1 credit, and if it is 43 pages long it will consume 3 credits).
  • For SVG rasterization and chart generation, 1 credit is consumed for each successful request.

Documentation