SpeakerScope.ai

Authentication

Authenticate your API requests using your API key and secret


All API requests require authentication using HTTP Basic Auth.

Create API credentials

Create and manage API credentials from your dashboard.

  1. Open the Dashboard.
  2. Click on Create API key.
  3. Give a name to your new API key (e.g., Production, Debug).
  4. Copy the generated key and secret.

Keep your secret secure. You won't be able to view it again after creation.

Screenshot of creating a new API key

Use API credentials

Pass your key and secret using HTTP Basic Auth.

import requests

response = requests.get(
    "https://speakerscope.ai/api/<ENDPOINT>",
    auth=("<API_KEY>", "<API_SECRET>"),
)

print(response.json())