curl --request GET \
--url https://app.loops.so/api/v1/api-key \
--header 'Authorization: Bearer <token>'{
"success": true,
"teamName": "My team"
}
Test that an API key is valid.
curl --request GET \
--url https://app.loops.so/api/v1/api-key \
--header 'Authorization: Bearer <token>'{
"success": true,
"teamName": "My team"
}
401 Forbidden will be returned if the API key is invalid.
{
"success": true,
"teamName": "My team"
}
Was this page helpful?