Welcome to the API documentation page.
https://app.wordware.ai/api/released-app/5f111e40-aad0-4576-b060-5c89c8b3a039/runYou have to pass two parameters to the request body: inputs and version.
These are the inputs for this WordApp:
We use a simplified semantic versioning. All versions follow the format <major>.<minor>, for example 2.3.
You have to pass the version number you want to use. You can use the caret syntax like this to get the latest non-breaking version: ^2.3. We recommend you use this syntax when you build your APIs. Example:
{"version": "^2.3"}The whole request body looks like this:
{ "inputs": { "financial_statement": { "type": "image", "image_url": "<image_url>" }, "seniority_level": "<string>" }, "version": "^2.3" }
To get started, export your API key in your terminal. When logged in you can find it in your .
export WORDWARE_API_KEY=<your_api_key>Use this cURL command to send your request:
curl -X POST https://app.wordware.ai/api/released-app/5f111e40-aad0-4576-b060-5c89c8b3a039/run-H "Authorization: Bearer $WORDWARE_API_KEY"-d '{"inputs":{"financial_statement":{"type":"image","image_url":"<image_url>"},"seniority_level":"<string>"},"version":"^2.3"}'