Most builders initialize VerifiedX once, then use the returned runtime object with the raw runtime or a native adapter.Documentation Index
Fetch the complete documentation index at: https://docs.verifiedx.me/llms.txt
Use this file to discover all available pages before exploring further.
Basic usage
What you do next
After initialization, use the returned runtime object with the integration surface you chose.Required configuration
For normal SDK usage,VERIFIEDX_API_KEY is the only required environment variable.
.env
Both SDKs read
VERIFIEDX_API_KEY automatically. Most builders do not need any additional initialization config.Python
Useinit_verifiedx() when you are working in Python.
- Returns a VerifiedX runtime object
- Synchronous
- Usually followed by
install_runtime(...)or a native Python adapter
TypeScript
UseinitVerifiedX() when you are working in TypeScript.
- Returns a Promise resolving to a VerifiedX runtime object
- Async
- Usually followed by
bindHarness(...)or a native TypeScript adapter
Advanced usage
Both SDKs also support advanced initialization in code for custom transports and specialized setups, but most builders should ignore that and use the default environment-variable path. The normal public integration pattern is:- Set
VERIFIEDX_API_KEY - Initialize VerifiedX once
- Bind the raw runtime or attach the native adapter