Webhooks

    The Booked API allows you to receive various events in the form of webhooks. Below are the available events configurable in your API Settings:

    If a Discord webhook URL is provided, an embed will be sent with the webhook data rather than raw JSON.

    Listings


    Listing Offer Create

    A POST request will be sent to the provided URL with data similar to the example below when an offer is created on a listing that you own:

    {
      "listingId": "652f2df92960860c8985a46e",
      "userId": "65249e5ed7372579c90e8e1c",
      "offerAmount": 100
    }

    Listing Sale

    A POST request will be sent to the provided URL with data similar to the example below when there is a sale on a listing you own:

    {
      "listingId": "652f2df92960860c8985a46e",
      "userId": "65249e5ed7372579c90e8e1c",
      "saleAmount": 100
    }