Authentication
Navigate to your workspace settings on Secoda. Click on the “API” to get a list of your API Keys.
Step 1: Create an API Key
Step 2: Authenticate Your Requests
Request Examples
curl '<https://{{base_URL}}/dictionary/terms>' -H 'Authorization: Bearer d736dd50-5d06-4d4f-bc3d-38a67cd46569'axios.get("<https://{{base_URL}}/dictionary/terms>", { headers={ "Authorization": "Bearer d736dd50-5d06-4d4f-bc3d-38a67cd46569" // replace the key with your own API Key } })import requests requests.get("<https://{{base_URL}}/dictionary/terms>", headers={ "Authorization": "Bearer d736dd50-5d06-4d4f-bc3d-38a67cd46569" # replace the key with your own API Key })
Last updated
Was this helpful?