Developer API
How to Use
Step 1 - Get your API key
To interact with Algovera's API, you first need to generate an API key, which you can generate from the Algovera Flow app. Once you are logged in and purchased the credits, select Account
from your profile.
There you can generate your API key under the API Keys
section by selecting Create new key
Make sure to copy and keep your key carefully. Keys will only be shown at creation.
Step 2 - Interacting with the API key in Python
Note: For API documentation, you can refer to api.algovera.ai/docs
APIEndpoint
: https://api.algovera.ai
Getting the available base models
The above call will return all the available models.
Posting a job
Once you post a job, it returns a job_id
that your could use to check the status of the job as well as to retrieve the output of the job (in this case the image).
Payload contains params for the job as well as your api_key
Checking the status of your job
job_status can be created
(the job is created and either is in queue or being processed), done
, failed
Get the output of your job
Last updated