VRPlatformVRPlatform

Authentication

How to authenticate requests with x-api-key and x-team-id

Authentication

All API requests must include your x-api-key header.

x-api-key: your-api-key

Team Selection

If your API key only has access to a single team, x-team-id is not required.

If your API key has access to multiple teams, include x-team-id to tell the API which team the request should run against.

x-api-key: your-api-key
x-team-id: your-team-id

When To Send x-team-id

  • Send x-team-id when the API key can access multiple teams.
  • Omit x-team-id when the API key can access exactly one team.

Example

curl 'https://api.vrplatform.app/listings' \
  -H 'x-api-key: your-api-key' \
  -H 'x-team-id: your-team-id'

On this page