Skip to main content

Examples

Updated over 4 months ago

API request using curl command from terminal as

curl -g -X GET 'https://api.uxcam.com/session/?appid=60f6c0b8b97ba419120b82eb&apikey=9c633412-927a-4f4e-87bc-386dc1e3a618&page=1&showonly={"property":1,"user":1,"location":0,"device":0}'

API request using python requests module

import requests
import requests
import json
headers = {
    'apikey': '9c633412-927a-4f4e-87bc-386dc1e3a618',
        }
response = requests.get('https://api.uxcam.com/session',
    params={
            'appid': '60f6c0b8b97ba419120b82eb',
            'page':1,
      	 'filter':json.dumps([{"totalgesture":{"operator":"geq","value":20}}]),
 	},
headers=headers)
json_response = response.json()
print(json_response)
Did this answer your question?