---
title: "How long are logs retained"
img: https://s3.us-east-2.amazonaws.com/unified-article-images/how_long_are_logs_retained-icon.png
date: 2024-04-02T00:00:00.000Z
tag: Guides
description: "API call logs are retained for 60 days. Our system removes log entries for API calls that are older than 60 days."
url: "https://docs.unified.to/guides/how_long_are_logs_retained"
---

# How long are logs retained
------
_April 2, 2024_

**API call logs are retained for 60 days.** Our system removes log entries for API calls that are older than 60 days. 


To retain a record of all of your API calls, we suggest that you make a backup copy of your API call log on a regular basis. You can do this by using our [Unified.to Admin API](https://docs.unified.to/unified/apicall/Returns_API_Calls).


For example, if you use our Node SDK, you could perform a backup using the `listUnifiedApicalls()` method:


```typescript
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const results = await sdk.unified.listUnifiedApicalls({  });
```