Web Analytics Made Easy - Statcounter
Skip to content

Getting Started

Register with the Anosys Platform throught console.anosys.ai and create an API key.

Start sending data

import requests

# Your unique AnoSys ingestion path
url = "https://api.anosys.ai/ingestion/your_unique_path"

# Query parameters
params = {
    "s1": "string1",  # string parameter
    "n1": 123.45      # numeric parameter (example value)
}

try:
    response = requests.get(url, params=params, timeout=10)
    response.raise_for_status()  # raise error for bad responses (4xx/5xx)
    print("Success:", response.text)
except requests.exceptions.RequestException as e:
    print("Error:", e)

To see more ways to integrate with the Anosys Platform check Ingestion Options