Skip to main content
GET
/
v0
/
teams
/
me
cURL
curl -X GET 'https://api.exa.ai/websets/v0/teams/me' \
  -H 'x-api-key: YOUR-EXA-API-KEY'
{
  "object": "team",
  "id": "team-abc123",
  "name": "My Team",
  "concurrency": {
    "active": 5,
    "queued": 2
  },
  "limits": {
    "maxConcurrent": 10,
    "maxQueued": 50
  }
}

Overview

The Get Team Info endpoint returns information about the authenticated team, including the team’s current concurrency usage and configured limits. This is useful for monitoring your Websets API usage and understanding your rate limits.

Response

The response includes:
  • object: Always “team”
  • id: Your team’s unique identifier
  • name: Your team’s name
  • concurrency: Current usage showing active and queued requests
  • limits: Your team’s concurrency limits

Concurrency Fields

The concurrency object shows your current request state:
  • active: Number of requests currently being processed
  • queued: Number of requests waiting to be processed

Limits Fields

The limits object shows your team’s configured limits:
  • maxConcurrent: Maximum number of requests that can be processed simultaneously (null means unlimited)
  • maxQueued: Maximum number of requests that can wait in the queue (null means unlimited)

Authorizations

x-api-key
string
header
required

Your Exa API key

Response

Team information retrieved successfully

object
string

The object type, always "team"

Example:

"team"

id
string

Unique identifier for the team

Example:

"team-abc123"

name
string

Name of the team

Example:

"My Team"

concurrency
object

Current concurrency usage

limits
object

Concurrency limits for the team