# Bundle Outbound: Email Validation + IP Geolocation + SSRF-Safe HTTP HEAD

> Bundle Outbound: Email Validation + IP Geolocation + SSRF-Safe HTTP HEAD is a paid API for AI agents from vending-machine-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Validates email format and MX records, geolocates an IP address, and performs an SSRF-safe HTTP HEAD probe on a URL — all in a single $0.01 call.

## Facts

- Endpoint: GET https://vending-machine-seven.vercel.app/api/v/bundle-outbound
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bundle-outbound-email-validation-ip-geolocation-ssrf-safe-http-head-a89d881b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N_JzIWfv0YXwO1HAgrORk

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bundle-outbound-email-validation-ip-geolocation-ssrf-safe-http-head-a89d881b
```

Example prompt: Check if the email john.doe@example.com is valid with live MX records, geolocate the IP 203.0.113.42, and do a HEAD probe on https://example.com/landing — I need all three results in one shot for lead scoring.

## When to prefer this

Use this endpoint when you need all three signals — email deliverability, IP geolocation, and URL reachability — in a single $0.01 payment, rather than making three separate API calls. Ideal for lead-gen pipelines, fraud detection agents, or outbound email workflows where you need to enrich and validate a contact record in one step. Prefer sibling endpoints if you only need one of the three signals individually.

## Known failure modes

- Invalid or missing email parameter returns an error on the email sub-object
- Non-public or SSRF-blocked URL causes http_head probe to fail or return an error
- Invalid IP format causes geolocation to fail
- URL is not HTTPS or is a private/internal IP range — rejected by SSRF protection
- Upstream DNS or geolocation provider timeout causes partial result or full failure
- Missing any of the three required query params (email, ip, url) returns a 400-level error

## How this service works

One payment for lead-gen and fraud agents: email format/MX, IP geolocation, and SSRF-safe HTTP HEAD

## Output

Returns a JSON object with: an email sub-object containing format validity, disposable-domain flag, and MX record check; an ip sub-object with geolocation fields (country, city, ASN, etc.); an http_head sub-object with status code, latency, and response headers from the URL probe; a boolean ok field; the service name; and total round-trip latency in ms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "email",
      "ip",
      "url"
     ],
     "properties": {
      "ip": {
       "type": "string",
       "description": "IPv4 or IPv6 to geolocate"
      },
      "url": {
       "type": "string",
       "description": "Public https:// URL for HEAD probe"
      },
      "email": {
       "type": "string",
       "description": "Email address to validate"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ip": {
       "type": "object"
      },
      "ok": {
       "type": "boolean"
      },
      "email": {
       "type": "object"
      },
      "service": {
       "type": "string"
      },
      "ms_total": {
       "type": "number"
      },
      "http_head": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bundle-outbound-email-validation-ip-geolocation-ssrf-safe-http-head-a89d881b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vending-machine-seven.vercel.app](https://www.zero.xyz/host/vending-machine-seven.vercel.app/llms.txt)
