Our API is based on the OpenAI specification and can be found here:

At the moment we support:

We also provide a simple Python client:

pip install priceloop-api

Once you installed the client you can start working with it.

import pandas as pd
from priceloop_api.utils import DefaultConfiguration, to_nocode

configuration = DefaultConfiguration.with_user_credentials('username', 'password')

d = {'col1': [1, 2], 'col2': [3, 4]}
df = pd.DataFrame(data=d)
to_nocode(df, 'table_name', configuration)
from priceloop_api.utils import DefaultConfiguration, read_nocode

configuration = DefaultConfiguration.with_user_credentials('username', 'password')
data = read_nocode('table_name', configuration, limit=2, offset=0)
print(data)