Getting Started
cURL Example
curl -X POST 'https://api.anec.app/ingestion' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_PRESHARED_KEY' \
-d '{
"source": "test_source_identifier",
"records": [
{
"ds": "2024-02-15T13:45:30+0200",
"message": "Test Message",
"filters": {
"country": "en",
"age": 27,
"tags": ["IOS", "Android"]
},
"score": 4,
"user_name": "adil_badil",
"url": "some_url"
}
]
}'Python
Last updated