GET /events

Authentication

Bearer Token API Key (header: X-API-Key)

Query Parameters

page integer optional query
Page number
limit integer optional query
Items per page
type string optional query
resource_type string optional query
from string optional query
to string optional query

Responses

200 List of events

No response body

curl -X GET 'https://platform-api.anyspend.com/api/v1/events' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://platform-api.anyspend.com/api/v1/events', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://platform-api.anyspend.com/api/v1/events', headers=headers)print(response.json())