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

# Conversion Interface

When you retrieve conversions using the SDK or API, the conversion data is returned as a structured object.

```typescript theme={null}
interface Conversion {
    id: number
    uniqueId: string
    data: Ip
    status: string
    startedAt: string
    completedAt: string | null
    createdAt: string
}
```
