Skip to main content

Set up your API key

Get Your Vizlook API Key

Sign up and receive $10 free credit.

Make an API request

Use our Python or JavaScript SDKs to request API, or call the API directly with cURL.

Install SDK

Bash
pip install vizlook
Python
from vizlook import Vizlook

vizlook = Vizlook(api_key="<YOUR_VIZLOOK_API_KEY>")

response = vizlook.search(
    "how to be productive",
    include_transcription=True,
    include_summary=True,
)

print("Dict with original API field name: ", response.to_dict())
print("Dict with snake case field name: ", response.to_dict(use_api_field_name=False))
print("Get value with snake case key from pydantic model: ", response.results)