View your API key and documentation on how to set up API access.
YOUR API KEY
*********
Keep your API Key confidential.
Credits Remaining: null/null
View your API key and documentation on how to set up API access.
If you use Python, then connecting is even easier. Just pip install and youre ready to start detecting AI.
Python SDK
Download our easy-to-use Python package:
pip install pangram-sdk
from pangram import Pangram
pangram_client = Pangram()text ="The quick brown fox jumps over the lazy dog."result = pangram_client.predict(text)print(result)
Inference API
Use our inference API directly:
curl 'https://text.api.pangramlabs.com' \
-X POST \
-H 'Content-Type: application/json' \
-H 'x-api-key: my-api-key' \
-d '{"text":"The quick brown fox jumps over the lazy dog."}'