> For the complete documentation index, see [llms.txt](https://integration.datonomy.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://integration.datonomy.tech/for-demand-partners/get-offline-ltv-list.md).

# Get offline LTV list

***

## Overview:

This endpoint provides a list of objects related to specific app users and their Long-Term Value (LTV) score. The LTV score indicates the projected revenue a user will bring to an application over the entire time they use the app.

***

## Request Method:

* **Type**: GET

***

## URL:

`https://0d634nkn4a.execute-api.us-east-2.amazonaws.com/development/get-ltv-list`

***

## Headers:

* `x-api-key`: Your API key for authorization (e.g., `your_api_key`).
* `Content-Type`: The type of the request body. Always set it as `application/json`.

***

## Body:

```json
{}
```

**Note:** The body currently seems to be an empty JSON object. Please ensure there are no parameters required for this API call. If there are, update this section accordingly.

***

## Response:

The response will be a JSON array containing objects. Each object represents a user's LTV score and associated identifiers.

Example:

```json
[
    {
        "remoteId": "D34DA17C-5337-4378-8425-A9266388E774.com.datonomy.tle.dot",
        "idfa": "00000000-0000-0000-0000-000000000000",
        "idfv": "A6043FEA-AA2A-42DA-923A-ADFB2E49348A",
        "ltvScore": 3,
        "bundleId": "com.datonomy.tle.dot",
        "date": "2023-08-31"
    },
    ...
]
```

***

### Object Fields:

* **remoteId** (String): A unique identifier for the user associated with a specific application.
* **idfa** (String): Identifier for Advertisers. A unique ID for each iOS device, used for targeted advertising.
* **idfv** (String): Identifier for Vendors. A unique ID assigned by Apple to a specific vendor.
* **ltvScore** (Number): The Long-Term Value score of the user.
* **bundleId** (String): The identifier for the application bundle.
* **date** (String): The date associated with the LTV score, in the format "YYYY-MM-DD".

***

## Usage Limits:

Make sure to include any limits on the number of requests that can be made to this endpoint within a certain timeframe, or any other rate-limiting or restrictions in place.

***

## Additional Notes:

* Always ensure that the API key is kept secret and is not exposed to unauthorized users.
* This endpoint provides over 1000 items; hence, consider using pagination if the application consuming this API needs to handle a large amount of data.

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://integration.datonomy.tech/for-demand-partners/get-offline-ltv-list.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
