This article is part of a guide on getting started with Voiceflow APIs
Start from the beginning here.
To use the Voiceflow APIs, the first thing you need is your API key. It's specific to each agent instead of for your whole account.
First, open your agent. Then go to Integrations > API Keys and copy your API key.
To learn more about API keys, see this article about authentication.
👉 Copy your API key and add it as a constant at the top of your Python file.
import requests
api_key = 'YOUR_API_KEY_HERE' # it should look like this: VF.DM.XXXXXXX.XXXXXX... keep this a secret!
const axios = require('axios');
const api_key = 'YOUR_API_KEY_HERE'; // it should look like this: VF.DM.XXXXXXX.XXXXXX... keep this a secret!