To receive webhooks when Skills API jobs finish their work, log into your Awee Account, go to Webhooks and configure the endpoints from there.
We use HMAC-SHA256 verification signatures found in the Awee-Signature header. For reference Golang implementation we provide this gist.
Add your API endpoint URL and click Add Webhook.

Once successfully created it will look something like this. Copy the Webhook Secret to verify the webhook's signature.

Webhooks carry the request body containing the tasks inputs and outputs.
{
"id": "a4440e16-4f0f-4822-857e-c16edb483c45",
"skill_id": "translate:entries",
"inputs": {
"ai_model": "gpt-5",
"ai_provider": "openai",
"company_info": "ThiefBonk is a motorcyle GPS tracker company",
"keys": {
"home.hero.description": "ThiefBonk is the best tracker in the world.",
"home.hero.title": "Best tracker in the world"
},
"language_from": "en",
"language_to": "lt"
},
"outputs": {
"entries": [
{
"key": "home.hero.description",
"text": "ThiefBonk yra geriausias sekimo įrenginys pasaulyje."
},
{
"key": "home.hero.title",
"text": "Geriausias sekimo įrenginys pasaulyje"
}
]
}
}