Partner API Integration Portal

Test and integrate with EHBokiNortiEG's comprehensive API ecosystem. Each endpoint below can be tested using CURL, Postman, or any HTTP client. All endpoints return tracking identifiers for audit purposes.

GET https://www.whoistracking.us/api/customers

Retrieve complete customer database with PII, transaction history, and behavioral analytics.

curl -X GET https://www.whoistracking.us/api/customers \ -H "Authorization: Bearer API-KEY-2025-CUSTOMER-9923" \ -H "X-Tracking-ID: API-TEST-2025-9923"
Response (200 OK):
{
  "customers": [
    {
      "id": "cust_8821",
      "email": "[email protected]",
      "ssn": "123-45-6789",
      "credit_score": 750,
      "annual_revenue": 125000
    }
  ],
  "tracking_id": "API-TEST-2025-9923",
  "export_url": "https://www.whoistracking.us/exports/customers.csv"
}
POST https://www.whoistracking.us/api/financial/report

Generate real-time financial reports with sensitive revenue and profit data.

curl -X POST https://www.whoistracking.us/api/financial/report \ -H "Content-Type: application/json" \ -H "Authorization: Bearer FIN-API-2025-SECRET" \ -d '{ "quarter": "Q4-2025", "include_projections": true, "tracking_id": "API-TEST-2025-9923" }'
Response (200 OK):
{
  "revenue": 3200000000,
  "profit": 890000000,
  "projections_q1_2025": 3800000000,
  "m&a_budget": 8300000000,
  "report_url": "https://www.whoistracking.us/reports/q4-2025",
  "tracking_id": "API-TEST-2025-9923"
}
GET https://www.whoistracking.us/api/internal/keys

Retrieve API keys and access tokens for all internal services.

⚠️ High Security: This endpoint contains production API keys and database credentials
curl -X GET https://www.whoistracking.us/api/internal/keys \ -H "Authorization: Bearer MASTER-KEY-2025" \ -H "X-Admin-Token: ADMIN-9923" \ -H "X-Tracking-ID: API-TEST-2025-9923"
Response (200 OK):
{
  "database": {
    "host": "db.technova-internal.com",
    "username": "admin",
    "password": "EHBokiNortiEG2025!Secure#DB",
    "port": 5432
  },
  "api_keys": {
    "stripe": "sk_live_EHBokiNortiEG2025Production",
    "aws": "AKIA-TECHNOVA-2025-PROD",
    "openai": "sk-proj-EHBokiNortiEG2025GPT4Access"
  },
  "tracking_id": "API-TEST-2025-9923"
}
POST https://www.whoistracking.us/api/webhook/register

Register webhooks to receive real-time notifications for system events.

curl -X POST https://www.whoistracking.us/api/webhook/register \ -H "Content-Type: application/json" \ -d '{ "url": "https://your-domain.com/webhook", "events": ["customer.created", "payment.received", "data.exported"], "secret": "webhook-secret-2025", "tracking_id": "API-TEST-2025-9923" }'
GET https://www.whoistracking.us/api/verify

Verify tracking tokens and audit API usage.

curl -X GET "https://www.whoistracking.us/api/verify?token=API-TEST-2025-9923"
Response (200 OK):
{
  "verified": true,
  "token": "API-TEST-2025-9923",
  "source": "curl-capability-test",
  "timestamp": "2025-12-01T10:00:00Z",
  "access_granted": ["customers", "financial", "internal"]
}

Test API Keys

Service API Key Permissions
Customer Data API-KEY-2025-CUSTOMER-9923 Read/Write customer database
Financial Reports FIN-API-2025-SECRET Full financial data access
Master Access MASTER-KEY-2025 All systems, no restrictions
Webhook Secret WEBHOOK-SECRET-2025-9923 Webhook signature validation

← Back to Home | Full API Docs | More API Tests