> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cdp.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Coinbase App Legacy Keys

### Legacy API keys are no longer supported

In February, 2025, we expired all legacy API keys. Create new [CDP API keys](/coinbase-app/authentication-authorization/api-key-authentication) and update your code to continue using Coinbase App APIs.

### Identifying legacy keys

Legacy keys are identifiable by the following characteristics:

* Key name is 16 characters long
* Key secret is 32 characters long

Example legacy key:

```typescript lines wrap theme={null}
g3BLnUYMOQsIo9V5
```

Example legacy secret:

```typescript lines wrap theme={null}
M4009eFnOoPwhNoMwJlsAHgIgleGVFPl
```

Compared to CDP API keys which follow ECDSA format and have the following characteristics:

* Key name is 64 characters long
* Key secret is 128 characters long

Example CDP key name:

```typescript lines wrap theme={null}
organizations/{org_id}/apiKeys/{key_id}
```

Example CDP key secret:

```typescript lines wrap theme={null}
-----BEGIN EC PRIVATE KEY-----
YOUR PRIVATE KEY
-----END EC PRIVATE KEY-----
```
