API
Documentation
The API documentation is available at http://app.konfuzio.com/swagger. To access the documentation please register beforehand.
How to make an API Call
USERNAME, PASSWORD, and ENDPOINT need to be replaced with your credentials / selected API endpoint.
Using CURL
curl -u USERNAME:PASSWORD -X GET "https://app.konfuzio.com/api/ENDPOINT"
Using Python
import requests
from requests.auth import HTTPBasicAuth
auth = HTTPBasicAuth('USERNAME', 'PASSWORD')
r = requests.get(url="https://app.konfuzio.com/api/ENDPOINT", auth=auth)