Logo
banner image
Public

API Documentation

Welcome to the API documentation page.

API

URL

https://app.wordware.ai/api/released-app/59c9d1a1-c126-4741-b900-b9433adb376b/run

Request Body

You have to pass two parameters to the request body: inputs and version.

Inputs

These are the inputs for this WordApp:

  • CV ({ "type": "file", "file_type": "<string>", "file_url": "<string>", "file_name": "<string>" })
  • Job Position (<string>)
  • URL (<string>)

Version

We use a simplified semantic versioning. All versions follow the format <major>.<minor>, for example 2.2.

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.2. We recommend you use this syntax when you build your APIs. Example:

{"version": "^2.2"}

Complete Body

The whole request body looks like this:

{ "inputs": { "CV": { "type": "image", "image_url": "<image_url>" }, "Job Position": "<string>", "URL": "<string>" }, "version": "^2.2" }

Testing

Setup

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>

cURL

Use this cURL command to send your request:

curl -X POST https://app.wordware.ai/api/released-app/59c9d1a1-c126-4741-b900-b9433adb376b/run
-H "Authorization: Bearer $WORDWARE_API_KEY"
-d '{"inputs":{"CV":{"type":"image","image_url":"<image_url>"},"Job Position":"<string>","URL":"<string>"},"version":"^2.2"}'