Skip to main content
POST
/
exports
Create export (async)
curl --request POST \
  --url https://api.qonversion.io/v4/exports \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "from_timestamp": 123,
  "to_timestamp": 123,
  "platform": "<string>"
}
'
{
  "object": "export",
  "id": "<string>",
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Body

application/json
from_timestamp
integer

Unix timestamp for export start.

to_timestamp
integer

Unix timestamp for export end.

platform
string

Platform filter (e.g. iOS, Android).

Response

Export task accepted.

object
string
Example:

"export"

id
string
url
string