---
title: Keys
---

[Skip to content](#%5Ftop) 

[API Reference](https://developers.cloudflare.com/api/typescript)

[Stream](https://developers.cloudflare.com/api/typescript/resources/stream)

Copy Markdown

Open in **Claude**

Open in **ChatGPT**

Open in **Cursor**

---

**Copy Markdown**

**View as Markdown**

# Keys

##### [List signing keys](https://developers.cloudflare.com/api/typescript/resources/stream/subresources/keys/methods/get)

client.stream.keys.get(KeyGetParams { account\_id } params, RequestOptionsoptions?): SinglePage<[KeyGetResponse](https://developers.cloudflare.com/api/typescript/resources/stream#%28resource%29%20stream.keys%20%3E%20%28model%29%20key%5Fget%5Fresponse%20%3E%20%28schema%29) { id, created, key\_id } \>

GET/accounts/{account\_id}/stream/keys

##### [Create signing keys](https://developers.cloudflare.com/api/typescript/resources/stream/subresources/keys/methods/create)

client.stream.keys.create(KeyCreateParams { account\_id } params, RequestOptionsoptions?): [Keys](https://developers.cloudflare.com/api/typescript/resources/stream#%28resource%29%20stream.keys%20%3E%20%28model%29%20keys%20%3E%20%28schema%29) { id, created, jwk, pem } 

POST/accounts/{account\_id}/stream/keys

##### [Delete signing keys](https://developers.cloudflare.com/api/typescript/resources/stream/subresources/keys/methods/delete)

client.stream.keys.delete(stringidentifier, KeyDeleteParams { account\_id } params, RequestOptionsoptions?): [KeyDeleteResponse](https://developers.cloudflare.com/api/typescript/resources/stream#%28resource%29%20stream.keys%20%3E%20%28model%29%20key%5Fdelete%5Fresponse%20%3E%20%28schema%29)

DELETE/accounts/{account\_id}/stream/keys/{identifier}

##### ModelsExpand Collapse 

Keys { id, created, jwk, pem } 

id?: string

Identifier.

maxLength32

created?: string

The date and time a signing key was created.

formatdate-time

jwk?: string

The signing key in JWK format.

pem?: string

The signing key in PEM format.

KeyGetResponse { id, created, key\_id } 

id?: string

Identifier.

maxLength32

created?: string

The date and time a signing key was created.

formatdate-time

key\_id?: string

The unique identifier for the signing key.

KeyDeleteResponse \= string