> ## Documentation Index
> Fetch the complete documentation index at: https://developers.pleo.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

export const RememberCallout = ({title, children, icon = "🪢"}) => <div style={{
  backgroundColor: 'var(--recommended-bg)',
  borderLeft: '4px solid #f63b92',
  borderRadius: '10px',
  padding: '18px 22px',
  marginBottom: '20px',
  boxShadow: '1px 1px 3px rgba(0,0,0,0.06)'
}}>
    <div style={{
  display: 'flex',
  alignItems: 'flex-start',
  gap: '14px'
}}>
      <span style={{
  fontSize: '22px',
  lineHeight: '1',
  flexShrink: 0
}}>
        {icon}
      </span>
      <div>
        {title && <div style={{
  fontSize: '16px',
  fontWeight: 600,
  color: 'var(--recommended-title)',
  marginBottom: '6px'
}}>
            {title}
          </div>}
        <div style={{
  fontSize: '14px',
  lineHeight: 1.65
}}>
          {children}
        </div>
      </div>
    </div>
  </div>;

The Pleo Expense API has been deprecated. Choose a migration path based on your use case.

<RememberCallout title="Remember">
  **Expenses** in the Pleo API are now called **Accounting Entries**. You will see these two terms used interchangeably across this documentation.
</RememberCallout>

<CardGroup cols={2}>
  <Card title="Migrate to the Export API" icon="upload" href="/deprecation/legacy-expense-api/migration-guide-expenses-api-to-export-api">
    <div className="text-sm mt-2">For partners building custom integrations to export expenses to accounting systems not natively supported by Pleo.</div>
  </Card>

  <Card title="Migrate to the Accounting Entries API" icon="file-lines" href="/deprecation/legacy-expense-api/migrate-to-accounting-entries-api">
    <div className="text-sm mt-2">For partners fetching expense data to build custom workflows such as dashboards, reports, or third-party syncs.</div>
  </Card>
</CardGroup>
