SkyNet365

For vendors

One POST. The marketplace does the rest.

Sign each lead with your per-source secret and send it. Field mapping normalizes your schema, tier routing finds the highest-paying eligible lane, and the cascade keeps moving inventory until it clears.

The whole integration.

HMAC-SHA256 over the raw body, hex-encoded, in one header. No OAuth dance, no SDK. If your stack can make an HTTPS request, you're a vendor.

  • Per-source secrets, rotatable any time
  • 600 req/min default rate limit, configurable per source
  • Per-source fill rate and quality score in the operator console
curl -X POST "https://api.skynetwork365.com/ingest-lead?source=$SOURCE_ID" \
  -H "content-type: application/json" \
  -H "x-skynet-signature: $(printf '%s' "$BODY" | \
       openssl dgst -sha256 -hmac "$SOURCE_SECRET" | awk '{print $NF}')" \
  -d "$BODY"

# $BODY
{
  "vendor_lead_id": "lp-20260611-0042",
  "first_name": "Marisol", "last_name": "Navarro",
  "phone": "8135551234", "email": "m.navarro@example.net",
  "state": "FL", "zip": "33614", "city": "Tampa",
  "dob": "1987-04-12", "household_size": 3, "income": 52000
}

# → 201 { "lead_id": "…", "auction": { "status": "sold", "price_cents": 350 } }

Paid for what clears, not what you send.

Tier routing

Each source maps to lanes by priority — premium inventory enters high, aged data enters low. You see exactly which lane bought each lead.

Cascade fill

Unsold leads re-auction down the fallback chain automatically. The terminal Overflow tier means fill rates stay honest and high.

Quality loop

Dispute rates and buyer dispositions roll up into a per-source score. Strong sources earn priority routing; weak ones see it coming.

Watch the pipeline run