# Get a list of public keys Gets a list of administration and client public keys. Endpoint: GET /v1.0/public-keys Version: 1.0 Security: AdministrationAccess ## Query parameters: - `next` (integer) Enter the next page value returned by the response to the previous GET /public-keys request to get the next batch of public keys. - `size` (integer) Number of keys to fetch. ## Response 200 fields (application/json): - `keys` (array) The public keys. - `keys.id` (string) Identifies the public key. - `keys.type` (string) Type of the public key (administration-key or client-key). - `keys.publicKey` (string) A public key in PEM format. - `keys.created` (integer) The date and time the key was created in milliseconds since 1970-01-01 00:00. - `keys.modified` (integer) The date and time the key was last modified in milliseconds since 1970-01-01 00:00. - `next` (integer) Use this page value in your next GET /public-keys request to fetch the next batch of public keys.