## List signing keys `client.stream.keys.get(KeyGetParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/stream/keys` Lists the video ID and creation date and time when a signing key was created. ### Parameters - `params: KeyGetParams` - `account_id: string` Identifier. ### Returns - `KeyGetResponse` - `id?: string` Identifier. - `created?: string` The date and time a signing key was created. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); // Automatically fetches more pages as needed. for await (const keyGetResponse of client.stream.keys.get({ account_id: '023e105f4ecef8ad9ca31a8372d0c353', })) { console.log(keyGetResponse.id); } ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": [ { "id": "023e105f4ecef8ad9ca31a8372d0c353", "created": "2014-01-02T02:20:00Z" } ] } ```