Conversations Endpoint
```python
import requests
url = "https://api.converseapps.com/conversations/export/v1/conversations"
params={
'start_time': 1696118400,
'end_time': 1696550400,
'bot_name': 'r3-218210',
'per_page': 1000
}
headers = {
'x-api-key': '<api_key>',
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
```Last updated
Was this helpful?