GET
/
v1
/
api-key
curl --request GET \
  --url https://app.loops.so/api/v1/api-key \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "teamName": "My team"
}

Request

No parameters.

Response

Success

success
boolean
required
teamName
string
required

The name of the team the API key belongs to.

Error

A 401 Forbidden will be returned if the API key is invalid.

error
string
required

“Invalid API key”

{
  "success": true,
  "teamName": "My team"
}

Was this page helpful?