Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.2 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.2 KB

Django_qr

A big thanks to contributors of these open source libraries which are used in this project.

Screenshot of the website

front end screen shot

API usage

To use the api send your data in json format. You should recieve a pdf file as a response. Or an error message in html or plan text format.

URL: https://www.canklottools.tk/api

Format: JSON

Method: POST

Response: Binary PDF File

Field Type Restraints Description
text List of strings Max length 20 Data you want to create the qr_code of
barcode_type_selection String "qr_code" or "barcode_code128" The type of barcode of qr_code you want to create

Example json object

{"text":["Hello", "world"],"barcode_type_selection":"qr_code"}