Users
curl -X POST \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]", "name": "John Doe", "password": "password123"}' \
https://api.pagepeek.com/v1/users{
"userId": "user123",
"email": "[email protected]",
"name": "John Doe",
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z"
}curl -X GET \
-H "Authorization: Bearer your_api_key_here" \
https://api.pagepeek.com/v1/users/user123{
"userId": "user123",
"email": "[email protected]",
"name": "John Doe",
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z"
}Last updated