Getting Virtual Key
- Using the API:
- In Python:
curl -X GET -H "x-javelin-apikey: $JAVELIN_API_KEY" "https://your-api-domain.com/v1/admin/providers/openai/keyvault/openai-vkey1"
Javelin Get Secret Example
from javelin_sdk import (
JavelinClient,
JavelinConfig,
Secret
)
import os
# Retrieve environment variables
javelin_api_key = os.getenv('JAVELIN_API_KEY')
# create javelin client
config = JavelinConfig(
base_url="https://your-api-domain.com",
javelin_api_key=javelin_api_key
)
client = JavelinClient(config)
# secret name to get is "openai-vkey1"
secret_name = "openai-vkey1"
provider_name = "openai"
# get the secret, for async use `await client.aget_secret(secret_name)`
fetched_secret = client.get_secret(secret_name, provider_name)
print(fetched_secret.model_dump_json(indent=2))