Get API keys

Get API keys

get

Retrieve all API keys. This does not return the full API key, but only a portion (for security purposes). The development key will be returned in full, as it'll be set in devices and is thus not private.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/apikeys HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "apiKeys": [
    {
      "id": 1,
      "apiKey": "text",
      "isDevelopmentKey": true,
      "name": "text",
      "created": "2025-07-12T03:04:09.532Z",
      "role": "admin"
    }
  ]
}

Last updated

Was this helpful?