Skip to main content
GET
/
v1
/
events
List the tenant's events
curl --request GET \
  --url https://api.myproceeds.xyz/v1/events \
  --header 'X-Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "paywallId": "<string>",
      "statusCode": 123,
      "responseTime": 123,
      "amount": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "Paywall": {
        "slug": "<string>",
        "name": "<string>"
      }
    }
  ],
  "meta": {
    "requestId": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "pagination": {
      "total": 123,
      "limit": 123,
      "offset": 123,
      "hasMore": true
    }
  }
}

Authorizations

X-Api-Key
string
header
required

API key in format mpk_<64 hex chars>. Can alternatively be sent as Authorization: Bearer mpk_....

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
eventType
enum<string>
Available options:
REQUEST,
SUCCESS,
ERROR
paywallId
string

Response

Analytics list (with per-eventType counts in meta.stats)

data
object[]
required
meta
object
required