Firetip Core

Core Infrastructure Setup

To enable high-velocity relaying, you must authorize the Firetip Native DNS records.
Alternatively, you can configure a Custom Relay to route your traffic through external
gateways such as Gmail, Hotmail, or Yahoo via the proprietary sc01 hardware cluster.

Setup API Hybrid Routing SMTP Settings

Overview

Firetip is a sovereign‑grade dispatch framework providing email, SMS, OTP, and hybrid message delivery through a unified API. Built on the SC01 identity layer, it delivers deterministic routing, isolated reputation domains, and real‑time telemetry without relying on shared cloud relays or third‑party infrastructure.

The platform exposes a consistent API surface for broadcast campaigns, transactional messaging, verification flows, and event‑driven webhooks. All dispatch operations run on Firetip’s independent execution engine, enabling operators to maintain full control over domain alignment, queue scaling, warmup behaviour, and delivery state transitions.

Firetip’s architecture separates storage, routing, and transmission layers, allowing high‑volume workloads to execute with predictable latency while preserving sovereign compliance boundaries. Developers can integrate directly via REST, SMTP bridge, or the Firetip SDK to automate outbound communication pipelines at infrastructure speed.

Architectural Components & Capabilities

  • Sovereign Blaster Core: High-throughput outbound transmission engine optimized for concurrent delivery tracking.
  • Domain Bridge Protocol: Isolated domain authentication matrices providing dedicated security layer verification.
  • Telemetry Stream Engine: Native telemetry logging utilizing tight packet-packed configurations linked straight to the SC01 framework.
  • Live State Monitoring: Real-time connection feedback and transaction listener loops operating with sub-millisecond response latency.
  • Queue Elimination Routing: Predictive thread management logic preventing transactional backlog generation during intensive campaigns.
  • Zero-Dependency Auditing: Built-in structural tracking mechanics that eliminate the need for third-party analytics and data-mining suites.
  • Hybrid Hardware Continuity: Native hookups allowing processing pipelines to synchronize effortlessly with localized sc01 hardware nodes.

Deployment Prerequisites & Integration Context

The Firetip dispatch platform is built for execution environments requiring:

  • High-volume transaction networks requiring unthrottled outbound capacity.
  • Independent marketing and corporate messaging delivery infrastructure.
  • Privacy-first data frameworks requiring standalone, audited data security lines.
  • High-velocity transactional updates where message queue delays lead to operational bottlenecks.
  • Hybrid hardware‑software structures looking to optimize physical sc01 processing setups.
  • Ecosystem applications looking for native integration loops alongside sCloud storage frameworks.

Firetip Documentation & API Reference

Sovereign dispatch infrastructure for email, SMS, OTP, and hybrid routing. Built on the sc01 hardware identity layer, Firetip provides deterministic delivery, isolated domain authority, and real‑time telemetry.

API Reference Overview

Domain Bridge

Provision domain identity and routing authority.

POST /api/v1/bridge/provision

Delivery Pipeline

High‑volume streaming dispatch engine.

/stream/v1/dispatch/execute

Verification Listener

Real‑time open & validation telemetry.

Webhook Callback

Cluster Triage

Administrative control for cluster stability.

PUT /api/v1/cluster/triage

Firetip Architecture

Firetip separates identity, routing, and dispatch layers to maintain sovereign control over outbound communication. All operations are anchored through the sc01 identity node, ensuring deterministic routing and isolated reputation domains.

  • Identity Layer: sc01 hardware binding, domain authority, cryptographic signatures.
  • Routing Layer: deterministic path selection, queue shaping, priority enforcement.
  • Dispatch Layer: email/SMS/OTP execution, streaming pipelines, real‑time telemetry.
  • Storage Layer: sovereign data partitioning, zero shared‑cloud contamination.

Quick Start Guide

  1. Provision your domain via the Domain Bridge API.
  2. Configure DNS (SPF, DKIM, DMARC) to activate Triple‑Auth.
  3. Open a streaming channel using the Delivery Pipeline.
  4. Register a webhook for real‑time verification events.
  5. Monitor cluster health using Cluster Triage.

sc01 Hardware Identity Layer

The sc01 node is the cryptographic anchor for all Firetip operations. Every outbound event is signed, validated, and routed through this hardware identity layer.

  • Hardware‑bound identity: non‑spoofable routing signatures.
  • Reputation isolation: each domain maintains its own authority profile.
  • Zero shared‑cloud exposure: no cross‑tenant contamination.
  • Real‑time telemetry: millisecond‑accurate event reporting.

Firetip REST API Index

Complete reference for all REST endpoints powering Firetip’s sovereign dispatch engine. Includes provisioning, routing, dispatch control, telemetry, and administrative cluster operations.

Identity & Domain Provisioning

Endpoints responsible for domain authority, routing identity, and sc01 hardware binding.

POST /api/v1/bridge/provision

Provision domain identity and assign routing authority.

GET /api/v1/bridge/status

Retrieve provisioning state, authority level, and DNS validation status.

DELETE /api/v1/bridge/revoke

Revoke domain authority and detach routing identity.

Outbound Dispatch Endpoints

REST endpoints for transactional messages, batch dispatching, and queue management.

POST /api/v1/email/send

Send a single transactional email via sc01 routing.

POST /api/v1/sms/send

Send SMS messages through Firetip’s GSM‑linked dispatch engine.

POST /api/v1/otp/generate

Generate and dispatch OTP codes with hardware‑bound identity.

POST /api/v1/otp/verify

Verify OTP codes using Firetip’s cryptographic validation engine.

Telemetry & Verification

Endpoints for message status, open tracking, and real‑time verification.

POST /api/v1/webhook/verification

Receive open, click, and validation events.

GET /api/v1/message/status

Query delivery, open, and verification state for any message.

Cluster Control & System Operations

Administrative endpoints for managing dispatch clusters, queues, and node health.

PUT /api/v1/cluster/triage

Pause queues, flush relays, or isolate nodes.

GET /api/v1/cluster/health

Retrieve node health, latency metrics, and cluster load.

POST /api/v1/cluster/restart

Restart a node or cluster segment.

Utility & Diagnostic Endpoints

Supporting endpoints for logs, diagnostics, and system metadata.

GET /api/v1/logs/recent

Retrieve recent dispatch logs for debugging.

GET /api/v1/system/info

Return system metadata, versioning, and hardware identity.

Authentication & Signature Verification

All Firetip REST requests must be authenticated using the SC01 Signature Header. This signature binds each request to your hardware identity and prevents spoofing, replay attacks, and unauthorized routing.

Header Format

X-SC01-Signature: <sha256_hmac>

Signature Algorithm

HMAC_SHA256(secret_key, timestamp + method + endpoint + body)

Required Fields

  • Timestamp (UNIX)
  • HTTP Method
  • Endpoint Path
  • Raw JSON Body

Example Payload

{
  "timestamp": 1719920041,
  "signature": "a8f2c9e1..."
}

See also: SDK Signature Examples

Error Codes & Diagnostic Responses

Firetip uses a structured error model designed for automated recovery, cluster triage, and sovereign‑priority routing.

ERR_401_AUTH

Invalid or missing SC01 signature.

ERR_429_LIMIT

Rate limit exceeded or provider throttle (external SMTP mode).

ERR_503_SYNC

Cluster temporarily unavailable during node synchronization.

ERR_007_GSM

GSM carrier rejected SMS payload or routing signature.

See also: Cluster Control API

Webhook Event Catalog

Firetip emits real‑time webhook events for delivery, verification, and identity‑bound telemetry.

Event Types

  • DELIVERED: Message accepted by remote MTA.
  • OPEN: Pixel‑verified open event.
  • CLICK: Link interaction event.
  • OTP_VERIFIED: OTP successfully validated.
  • BOUNCE_HARD: Permanent delivery failure.
  • BOUNCE_SOFT: Temporary delivery failure.

Example Webhook Payload

{
  "event": "OPEN",
  "message_id": "MSG-9912",
  "timestamp": 1719921123,
  "user_agent": "Mozilla/5.0",
  "ip": "82.21.44.19"
}

See also: Verification Listener

Message Object Schema

All Firetip dispatch operations use a unified message schema for email, SMS, and OTP workloads.

{
  "message_id": "MSG-4421",
  "type": "email | sms | otp",
  "to": "user@example.com",
  "subject": "optional",
  "html": "optional",
  "text": "optional",
  "status": "QUEUED | SENT | DELIVERED | OPEN | FAILED",
  "timestamp": 1719920041,
  "metadata": {
    "campaign_id": "CMP-8842",
    "sc01_node": "SC01-442",
    "priority": "standard | sovereign"
  }
}

See also: Dispatch API

Rate Limits & Throughput Profiles

Firetip uses dynamic throughput scaling based on domain authority, sc01 warmup state, and cluster load.

  • Warmup Mode: 50–500 msgs/min
  • Standard Mode: 5,000–20,000 msgs/min
  • Sovereign Priority: 50,000+ msgs/min
  • External SMTP Mode: Provider‑limited (Gmail, Hotmail, Yahoo)

See also: Delivery Pipeline

sCloud sc01 Node

Firetip is powered exclusively by sCloud sc01 nodes. High-performance hardware using Ryzen architecture to ensure maximum delivery speed for over 1 million users.

PROPRIETARY SILICON

SC01 Hardware Identity Specification

The SC01 node is the cryptographic anchor for all Firetip routing, identity validation, and sovereign authority enforcement.

Core Attributes

  • Hardware‑bound identity: Non‑spoofable routing signature.
  • Reputation isolation: Each domain maintains its own authority profile.
  • Zero shared‑cloud exposure: No cross‑tenant contamination.
  • Real‑time telemetry: Millisecond‑accurate event reporting.

See also: Architecture Overview

SMTP Bridge Documentation

The Firetip SMTP Bridge provides a direct SMTP interface for sending email through the sc01 hardware identity layer. It is designed for platforms that require traditional SMTP compatibility while retaining sovereign routing, deterministic delivery, and Firetip’s Triple‑Auth authority model.

Overview

The SMTP Bridge acts as a translation layer between legacy SMTP clients and Firetip’s sovereign dispatch engine. Incoming SMTP commands are validated, cryptographically signed, and routed through the sc01 node before entering the Firetip delivery pipeline.

  • Protocol: SMTP (RFC 5321 compliant)
  • Transport: TLS 1.2+ required
  • Identity Binding: SC01 hardware signature
  • Authority Model: Triple‑Auth (SPF + DKIM + DMARC)
  • Compatibility: Any SMTP client or MTA

Connection Details

SMTP Host: smtp.firetip.pro
Port (TLS): 587
Port (SSL): 465
Auth Method: LOGIN / PLAIN
Username: <your_firetip_username>
Password: <sc01_signature_token>

The password is not a static credential — it is a rotating SC01 signature token bound to your hardware identity.

Required Headers

Firetip requires specific headers to ensure sovereign routing and identity validation.

  • X-SC01-Signature: Hardware-bound HMAC signature
  • X-Firetip-Node: SC01 node identifier
  • X-Firetip-Route: Routing path (primary / fallback / sovereign)
  • X-Firetip-Priority: standard / high / sovereign

SMTP Envelope Requirements

MAIL FROM:<sender@example.com>
RCPT TO:<recipient@example.com>
DATA
Subject: Example Email
X-SC01-Signature: <signature>
X-Firetip-Node: SC01-442
X-Firetip-Route: primary
X-Firetip-Priority: standard

Hello from Firetip.
.

Native vs External Relay Modes

Native Relay (Recommended)

Uses Firetip’s sovereign DNS, DKIM, and DMARC. Full Triple‑Auth authority and maximum throughput.

  • Highest delivery rate
  • Hardware-bound identity
  • Zero shared-cloud contamination

External SMTP Relay

Firetip tunnels SMTP traffic through Gmail, Hotmail, Yahoo, or custom MTAs.

  • Provider rate limits apply
  • External throttling possible
  • Useful for low-volume or fallback routing

Example SMTP Session

220 smtp.firetip.pro ESMTP Firetip-Bridge
EHLO example.com
250-smtp.firetip.pro
250-AUTH LOGIN PLAIN
250 STARTTLS

AUTH LOGIN
334 VXNlcm5hbWU6
<base64_username>
334 UGFzc3dvcmQ6
<base64_sc01_signature>
235 Authentication successful

MAIL FROM:<sender@example.com>
250 OK

RCPT TO:<recipient@example.com>
250 Accepted

DATA
354 End data with <CR><LF>.<CR><LF>

Subject: Firetip SMTP Test
X-SC01-Signature: a8f2c9e1...
X-Firetip-Node: SC01-442
X-Firetip-Route: primary

Hello from Firetip SMTP Bridge.
.
250 Message queued for delivery

Security Model

  • TLS enforced: No plaintext SMTP allowed.
  • Hardware-bound identity: SC01 signature required.
  • Replay protection: Timestamped HMAC tokens.
  • Header integrity: All Firetip headers validated.

Throughput Profiles

  • Warmup: 50–500 msgs/min
  • Standard: 5,000–20,000 msgs/min
  • Sovereign Priority: 50,000+ msgs/min
  • External SMTP: Provider-limited

Troubleshooting

  • 535 AUTH FAILED: Invalid SC01 signature token.
  • 550 DOMAIN NOT PROVISIONED: Use Domain Bridge API first.
  • 451 TEMPORARY FAILURE: Node sync or cluster warmup.
  • 421 RATE LIMITED: External SMTP provider throttling.

See also: Domain Bridge API · Delivery Pipeline · Verification Listener

Firetip Campaign Engine Documentation

The Firetip Campaign Engine is a high‑volume, hardware‑accelerated dispatch system designed for sovereign‑grade email, SMS, and hybrid message campaigns. It operates on top of the sc01 identity layer, ensuring deterministic routing, isolated domain authority, and real‑time telemetry.

Architecture Overview

The Campaign Engine is built on a three‑layer architecture:

  • Ingestion Layer: Accepts campaign payloads via REST or Streaming API.
  • Queue Shaping Layer: Applies priority, warmup rules, and sovereign routing logic.
  • Dispatch Layer: Executes high‑velocity delivery through sc01 hardware.

Campaign Payload Structure

{
  "campaign_id": "CMP-4421",
  "batch": [
    { "to": "user1@example.com", "subject": "Hello", "html": "

Hi

" }, { "to": "user2@example.com", "subject": "Hello", "html": "

Hi

" } ], "priority": "standard | high | sovereign", "metadata": { "sc01_node": "SC01-442", "warmup": false } }

Execution Modes

  • Standard Delivery: Balanced throughput with adaptive queue shaping.
  • High‑Velocity Blast: Maximum throughput; bypasses shaping rules.
  • Sovereign Priority: Reserved for domains with full Triple‑Auth authority.

Streaming Dispatch

Channel: /stream/v1/dispatch/execute
Protocol: WebSockets / SSE

Streaming mode is recommended for campaigns exceeding 10,000 messages.

Real‑Time Telemetry

  • Queue depth
  • Node load
  • Delivery rate
  • Open & click events
  • Warmup progression

Error Handling

  • ERR_503_SYNC: Node synchronization in progress.
  • ERR_429_LIMIT: External SMTP provider throttle.
  • ERR_007_GSM: GSM carrier rejection.

API Reference & Outbound Protocols

Domain Bridge Handshake (REST API)

Initializes identity mapping and routing parameters for custom target domains prior to launching active transmission bursts.

  • Endpoint: POST /api/v1/bridge/provision
  • Headers: X-SC01-Signature: <cryptographic_hash>
  • Payload: target_domain, sc01_id, routing_path

Campaign Delivery Pipeline (Streaming API)

Establishes an asynchronous execution stream for parsing and blasting high-volume campaign batches through registered nodes.

  • Protocol: WebSockets / SSE
  • Channel: /stream/v1/dispatch/execute
  • Modes: Standard Delivery, High-Velocity Blast, Sovereign Prioritized Queueing

Live Verification Listener (Webhook Loop)

Monitors outbound confirmation signals and timestamps the exact millisecond emails are opened or validated.

  • Callback: Event-Driven Webhook
  • Event Frame: LISTENING FOR VERIFICATION
  • Target: Java System Object Identifier Sync

Emergency Cluster Triage (System Controls)

Emergency circuit breaker route used to pause running queues, re-route stuck relays, or isolate faulty nodes under load.

  • Endpoint: PUT /api/v1/cluster/triage
  • Commands: PAUSE_BLASTER, FLUSH_QUEUES, ISOLATE_NODE
  • Access: Super-user administrative credentials

Domain Bridge Handshake — Detailed Specification

The Domain Bridge Handshake provisions identity bindings between a user’s domain and the sc01 hardware layer. This step is required before any outbound traffic can be authorized.

Purpose

Ensures Firetip can cryptographically validate domain ownership and assign routing authority.

Endpoint

POST /api/v1/bridge/provision

Headers

X-SC01-Signature: <cryptographic_hash>

Payload

{
  "target_domain": "example.com",
  "sc01_id": "NODE-8842",
  "routing_path": "primary"
}

Response

{
  "status": "PROVISIONED",
  "authority_level": "DOMAIN_LOCKED",
  "timestamp": 1719920041
}

Campaign Delivery Pipeline — Detailed Specification

The Delivery Pipeline establishes a persistent streaming channel for high-volume outbound workloads. It is optimized for real-time queue parsing and sovereign-priority execution.

Protocol

WebSockets / Server-Sent Events (SSE)

Channel

/stream/v1/dispatch/execute

Operational Modes

  • Standard Delivery
  • High-Velocity Blast
  • Sovereign Prioritized Queueing

Example Stream Payload

{
  "campaign_id": "CMP-4421",
  "batch_size": 5000,
  "priority": "sovereign"
}

Live Verification Listener — Detailed Specification

The Verification Listener receives real-time confirmation events for opens, validations, and identity checks. It is designed for millisecond-accurate telemetry.

Callback Type

POST <your_webhook_url>

Event Frame

LISTENING FOR VERIFICATION

Example Webhook Payload

{
  "event": "OPEN",
  "message_id": "MSG-9912",
  "timestamp": 1719921123,
  "user_agent": "Mozilla/5.0"
}

Emergency Cluster Triage — Detailed Specification

The triage controller provides administrative-level control over active dispatch clusters. It is used to pause, flush, or isolate nodes during abnormal load or failure conditions.

Endpoint

PUT /api/v1/cluster/triage

Commands

  • PAUSE_BLASTER
  • FLUSH_QUEUES
  • ISOLATE_NODE

Example Payload

{
  "command": "ISOLATE_NODE",
  "node_id": "SC01-442",
  "reason": "latency_spike"
}