Engaging plots, made easy.

Easily turn your data into engaging visualizations. Powerful API for coders. Powerful app for everyone.

main.py
notebook.ipynb
main.rs
from plotapi import Chord

Chord(matrix, names).show()

API for coders

Troubleshooting

Frequently asked questions and their answers.


Log in to see your API key

Log into PlotAPI.com to see your API key pre-populated in all code examples on this page.

Python

SSL errors when behind corporate or school networks

If an error similar to the following is encountered, you can try disabling SSL verification.

SSLError: HTTPSConnectionPool(host='plotapi.com', port=443): Max retries exceeded with url

This can be disabled by invoking verify_ssl before your visualization code and passing in False.

from plotapi import Chord

Chord.verify_ssl(False)

Chord.api_key("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")

# Visualization code here

Previous
REST API