How to Use Fields from Webhook Response JSON in Typebot?
Hi,
I'm integrating Typebot with an n8n workflow via a POST Webhook.
Here's the flow:
I want Typebot to display the text and image URL returned by the webhook.
What I’ve tried:
My Webhook settings:

I'm integrating Typebot with an n8n workflow via a POST Webhook.
Here's the flow:
- Typebot sends a JSON payload to an n8n webhook.
- The n8n workflow runs a query and returns a JSON response like:
{
"text": "2020 → 23528517.0423306",
"image": "https://quickchart.io/chart?c=%7B...%7D"
}I want Typebot to display the text and image URL returned by the webhook.
What I’ve tried:
- Using {{text}} and {{image}} in the response block.
- Using !Chart for the chat
My Webhook settings:
- I’ve added the Content-Type: application/json header.
- The webhook request and response work fine (verified via Postman).
- The workflow is active, and the JSON response is correct.
- How do I access and display custom JSON fields from the webhook response in Typebot?
- Is there a way to explicitly map response fields like text and image to Typebot variables?