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": "<string>",
  "id": "<string>",
  "name": "<string>",
  "concurrency": {
    "active": 123,
    "queued": 123
  },
  "limits": {
    "maxConcurrent": 123,
    "maxQueued": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://exa.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

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

Pass your Exa API key in the x-api-key header. You can also authenticate with Authorization: Bearer .

Response

200 - application/json

Team information retrieved successfully

object
string
required

The object type, always "team".

Allowed value: "team"
id
string
required

Unique identifier for the team.

name
string
required

Name of the team.

concurrency
object
required

Current concurrency usage.

limits
object
required

Concurrency limits for the team.