Skip to main content
GET
/
key-info
Get Key Info
curl --request GET \
  --url https://api-key-generator.tavily.com/key-info \
  --header 'Authorization: Bearer <token>'
{
  "name": "test",
  "created": "2026-02-23T21:48:01Z",
  "expires_at": "never",
  "key_type": "development",
  "status": "active"
}
Who can use this feature?
This feature is available on the Enterprise plan. Talk to an expert to learn more.

Authorizations

Authorization
string
header
required

Bearer authentication header in the form Bearer , where is your Tavily API key (e.g., Bearer tvly-YOUR_API_KEY).

Response

200 - application/json

Key information retrieved successfully.

name
string

The name of the API key.

Example:

"test"

created
string

The creation timestamp.

Example:

"2026-02-23T21:48:01Z"

expires_at
string

The expiration timestamp, or "never" if the key does not expire.

Example:

"never"

key_type
enum<string>

The type of key.

Available options:
development,
production
Example:

"development"

status
enum<string>

The current status of the key.

Available options:
active,
deactivated
Example:

"active"