Nomacore API

Commercial intelligence from customer data.

Live Demo

Try the enrichment endpoint with sample data. No API key required for this demo.

API Response

Documentation

POST /v1/enrich

Send customer details to receive demographic probabilities and commercial flags.

Request

curl -X POST https://api.vimerk.com/v1/enrich \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Johan Johansson",
    "address": "753 20 Uppsala",
    "country": "SE"
  }'

Response

{
  "status": "success",
  "data": {
    "demographics": {
      "gender": "male",
      "confidence": 0.98,
      "age_bracket": "35-45"
    },
    "location": {
      "type": "residential",
      "income_decile": 7,
      "urban_density": "high"
    },
    "commercial_flags": {
      "is_business": false,
      "is_pobox": false
    }
  },
  "meta": {
    "request_id": "req_12345abc",
    "latency_ms": 45
  }
}