API Keys

GEThttps://api.laminar.run/workspaces/{workspaceId}/api-keys
Path parameters
workspaceId*integer (int64)
Response

OK

Body
idinteger (int64)
apiKeystring
createdAtstring (date-time)
Request
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/api-keys', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "apiKey": "text",
    "createdAt": "2024-09-08T00:42:18.628Z"
  }
]