AutoContent API
  • Getting started
  • 🔮API Docs
    • 🪄Create Content
    • ♻️Modify Podcast
    • 🪄Create Podcast with custom voices
    • 🪄Create Podcast with a custom script
    • 📽️Create Short
    • 🗣️Clone Voice
    • 🧑‍🤝‍🧑Get Voices
    • 📃Get Transcript
    • 🧑‍🤝‍🧑Separate Speakers Voices
    • ⚙️Get Status
    • 📖List content
    • ⚡Webhook
    • 📈Usage
    • Error codes
  • 🪙Credits
  • 📖Code Samples
    • NodeJS
    • Python
    • C#
    • PHP
  • 🌎Languages
  • 🗣️Voices
  • ❓FAQ
  • 🔌Open API
  • ⚒️Test it
  • 💳Billing
  • Support
Powered by GitBook
On this page
  • POST
  • GET
  • WEBHOOK DATA
  1. API Docs

Webhook

Get or Set the url where you want to receive webhook notifications when a request has completed successfully (status == 100)

POST

https://api.autocontentapi.com/content/Webhook

curl -X 'POST' \
  'https://api.autocontentapi.com/Content/Webhook' \
  -H 'accept: */*' \
  -H 'Authorization: Bearer YOUR_TOKEN_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
  "url": "https://hook.eu2.make.com/glnwiaetcwptnru3p2u8ciztybarhike"
}'

GET

https://api.autocontentapi.com/content/Webhooks

curl -X 'GET' \
  'https://api.autocontentapi.com/content/Webhooks' \
  -H 'accept: */*' \
  -H 'Authorization: Bearer YOUR_TOKEN_HERE'

Sample Response:

[
  {
    "url": "https://hook.eu2.make.com/glvwiuetcwptnru2p2u8ciztybar",
    "id": 22,
    "createdOn": "2025-02-22T20:58:30.86"
  },
  {
    "url": "https://hook.eu2.make.com/glvwiuetcwptnru2p2u8ciztyret",
    "id": 54,
    "createdOn": "2025-02-25T20:58:30.86"
  }
]

Returns the endpoint where the api will notify podcast completions.

WEBHOOK DATA

PreviousList contentNextUsage

Last updated 2 months ago

It returns the same data as the

🔮
⚡
Get Status request