OS Versions

OS Versions

Find All

GET /v1/meta/osversions

OS Versions are used to narrow down the targeting of your offers, smartlinks, custom settings, etc.

They are limited to the Android and iOS platforms.

cURL
curl --request GET 'https://api.eflow.team/v1/meta/osversions' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
    "os_versions": [
        {
            "os_version_id": 1,
            "name": "4.1",
            "platform_id": 1,
            "platform_name": "Android"
        },
        ...,
        {
            "os_version_id": 45,
            "name": "11.0",
            "platform_id": 1,
            "platform_name": "Android"
        }
    ]
}