Why Meta Quest?
Design
Develop
API reference
Distribute and grow
Blog
Support
API reference
API reference
Select your platform
No SDKs available
No versions available
Overview
AudioClipAudioSource
ImageViewer
Lib
Meta
Audio
Conduit
Net
Voice
WitAi
WitAi
ArrayNodeReference
Attributes
AudioDurationTracker
BaseSpeechService
CallbackHandlers
Comment
ComponentExtensions
Configuration
CoroutineUtility
Data
Dictation
Drawers
EditorUtilities
EnumerableExtensions
Events
ExportParser
ExportSaver
IExportParserPlugin
IRequest
ITelemetryEventsProvider
IVoiceActivationHandler
IVoiceEventProvider
IVoiceService
IWitRequestConfiguration
IWitRequestEndpointInfo
IWitRuntimeConfigProvider
IWitRuntimeConfigSetter
Inspectors
Interfaces
Json
Lib
MatchIntent
MatchIntentRegistry
ObjectNodeReference
PluggableBase
RegisteredMatchIntent
Requests
Requests
AudioStreamHandler
IRequestDownloadHandler
IVRequestStreamable
IWitInfoVRequest
IWitSyncVRequest
IWitVRequest
TextStreamHandler
VRequest
VoiceEventToRequestEventMapper
VoiceServiceMockRequest
VoiceServiceRequest
VoiceServiceRequestEvent
VoiceServiceRequestEvents
VoiceServiceRequestEventsWrapper
VoiceServiceRequestOptions
VoiceServiceRequestResults
WitInfoVRequest
WitMessageVRequest
WitResponseDecoder
WitSocketRequest
WitSyncVRequest
WitTTSVRequest
WitUnityRequest
WitVRequest
ServiceReferences
Speech
TTS
TaskUtility
ThreadUtility
TypeExtensions
UnityEventExtensions
UnityObjectExtensions
Utilities
VLog
ValidatePartialIntent
VoiceService
Windows
Wit
WitAppInfoUtility
WitAuthUtility
WitConduitParameterProvider
WitConfigurationEditorUI
WitConstants
WitEditorConstants
WitEditorUI
WitExportRetriever
WitRequest
WitRequestFactory
WitRequestSettings
WitResponseReference
WitResultUtilities
WitRuntimeRequestConfiguration
WitService
WitStyles
WitTexts
WrapHttpWebRequest
ZipArchiveExtensions
Oculus
Code samples
Downloads
Release notes
Supported platforms
Meta
IWitVRequest Interface
Properties
int
Timeout
[Get]
Timeout in seconds
bool
IsPerforming
[Get]
If request is currently being performed
IWitRequestConfiguration
Configuration
[Get]
The configuration used for voice requests
Member Functions
bool
Request
( UnityWebRequest unityRequest,
VRequest.RequestCompleteDelegate< UnityWebRequest > onComplete )
Perform a generic request
Parameters
unityRequest
The unity request
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
string
CleanUrl
( string url )
Clean the url prior to use
void
Cancel
( )
bool
RequestFileHeaders
( Uri uri,
VRequest.RequestCompleteDelegate< Dictionary< string, string >> onComplete )
Performs a simple http header request
Parameters
uri
onComplete
Called once header lookup has completed
Returns
bool
RequestFile
( Uri uri,
VRequest.RequestCompleteDelegate< byte[]> onComplete )
Performs a simple http header request
Parameters
uri
Uri to get a file
onComplete
Called once file data has been loaded
Returns
False if cannot begin request
bool
RequestFileDownload
( string downloadPath,
UnityWebRequest unityRequest,
VRequest.RequestCompleteDelegate< bool > onComplete )
Download a file using a unityrequest
Parameters
unityRequest
The unity request to add a download handler to
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
bool
RequestFileExists
( string checkPath,
VRequest.RequestCompleteDelegate< bool > onComplete )
Checks if a file exists at a specified location
Parameters
checkPath
The local file path to be checked
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
bool
RequestText
( UnityWebRequest unityRequest,
VRequest.RequestCompleteDelegate< string > onComplete,
TextStreamHandler
.TextStreamResponseDelegate
onPartial )
Performs a text request & handles the resultant text
Parameters
unityRequest
The unity request performing the post or get
onComplete
The callback delegate on request completion
onPartial
The callback delegate for text as it arrives
Returns
False if the request cannot be performed
bool
RequestJson< TData >
( UnityWebRequest unityRequest,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Performs a json request & handles the resultant text
Parameters
unityRequest
The unity request performing the post or get
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Others
TData
The struct or class to be deserialized to
bool
RequestJsonGet< TData >
( Uri uri,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Perform a json get request with a specified uri
Parameters
uri
The uri to be requested
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Others
TData
The struct or class to be deserialized to
bool
RequestJsonPost< TData >
( Uri uri,
byte [] postData,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Performs a json request by posting byte data
Parameters
uri
The uri to be requested
postData
The data to be uploaded
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Others
TData
The struct or class to be deserialized to
bool
RequestJsonPost< TData >
( Uri uri,
string postText,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Performs a json request by posting byte data
Parameters
uri
The uri to be requested
postText
The string to be uploaded
onComplete
The delegate upon completion
onProgress
The data upload progress
Others
TData
The struct or class to be deserialized to
Returns
False if the request cannot be performed
bool
RequestJsonPut< TData >
( Uri uri,
byte [] putData,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Performs a json request by posting byte data
Parameters
uri
The uri to be requested
putData
The data to be uploaded
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Others
TData
The struct or class to be deserialized to
bool
RequestJsonPut< TData >
( Uri uri,
string putText,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Performs a json request by putting string
Parameters
uri
The uri to be requested
putText
The string to be uploaded
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Others
TData
The struct or class to be deserialized to
Uri
GetUri
( string path,
Dictionary< string, string > queryParams )
bool
RequestWitGet< TData >
( string uriEndpoint,
Dictionary< string, string > uriParams,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Get request to a wit endpoint
Parameters
uriEndpoint
Endpoint name
uriParams
Endpoint url parameters
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
bool
RequestWitPost< TData >
( string uriEndpoint,
Dictionary< string, string > uriParams,
string postText,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Post text request to a wit endpoint
Parameters
uriEndpoint
Endpoint name
uriParams
Endpoint url parameters
postText
Text to be sent to endpoint
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
bool
RequestWitPut< TData >
( string uriEndpoint,
Dictionary< string, string > uriParams,
string putText,
VRequest.RequestCompleteDelegate< TData > onComplete,
VRequest.RequestCompleteDelegate< TData > onPartialCallback )
Put text request to a wit endpoint
Parameters
uriEndpoint
Endpoint name
uriParams
Endpoint url parameters
putText
Text to be sent to endpoint
onComplete
The callback delegate on request completion
Returns
False if the request cannot be performed
Build with Meta
Social Technologies
Meta Horizon
AI
Worlds
About us
Careers
Research
Products
Virtual reality / Meta Horizon
Developer Blog
Download SDKs
Meta for Work
Programs
Start
Meta Horizon Creator Program
Discover
Why Meta Quest?
What is mixed reality?
Platforms and tools
2D apps for Meta Horizon OS
Devices
Meta Avatars
Success stories
Use cases
Support and legal
Developer policies
Legal
Privacy
Forums
Support
Build with Meta
Social Technologies
Meta Horizon
AI
Worlds
About us
Careers
Research
Products
Virtual reality / Meta Horizon
Developer Blog
Download SDKs
Meta for Work
Programs
Start
Meta Horizon Creator Program
Discover
Why Meta Quest?
What is mixed reality?
Platforms and tools
2D apps for Meta Horizon OS
Devices
Meta Avatars
Success stories
Use cases
Support and legal
Developer policies
Legal
Privacy
Forums
Support
Build with Meta
Social Technologies
Meta Horizon
AI
Worlds
About us
Careers
Research
Products
Virtual reality / Meta Horizon
Developer Blog
Download SDKs
Meta for Work
Programs
Start
Meta Horizon Creator Program
Discover
Why Meta Quest?
What is mixed reality?
Platforms and tools
2D apps for Meta Horizon OS
Devices
Meta Avatars
Success stories
Use cases
Support and legal
Developer policies
Legal
Privacy
Forums
Support
English (US)
© 2026 Meta