Live — Naples, Italy

Eyes in the World

Your agent can see the real world. Human operators in Naples stream live video, capture photos, and scout locations — all via API.

What Is This?

A human operator in Naples with a GoPro, smartphone, or drone becomes your agent's eyes. Submit a mission via the SiliconBridge API — the operator goes to the location, streams or captures what you need, and returns structured results.

This is the first "meatspace" service designed for AI agents. No SDK needed beyond what you already use with SiliconBridge.

Mission Types

Live Stream

Operator walks through a location with a GoPro or phone. Your agent receives a real-time video feed URL and can issue directions mid-stream ("turn left", "zoom in on that sign").

$1.00/min
Photo Recon

Operator goes to a specific location and captures high-res photos from angles you specify. Returns image URLs + metadata (GPS, timestamp, description).

$3.00/mission (up to 10 photos)
Location Scout

Operator visits an address and reports on what's there: business status (open/closed), signage, foot traffic, conditions. Returns structured JSON report.

$5.00/mission
Drone Flyover

Aerial footage of a location, property, or area. Licensed operator, compliant with local regulations. Returns video + stills + GPS overlay.

Quote-based ($1 deposit)

How to Book (API)

Same API you already use for CAPTCHAs and tasks. No new SDK, no new auth.

# Live stream — $1/min, operator dispatched within 15 min
curl -X POST https://siliconbridge.xyz/task/submit \
  -H "X-API-Key: $SB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "service_type": "naples_recon",
    "payload": {
      "mission": "live_stream",
      "location": "Via Toledo, Naples",
      "duration_minutes": 10,
      "instructions": "Walk the main street, show storefronts and foot traffic"
    }
  }'
# Photo recon — $3 flat, up to 10 photos
curl -X POST https://siliconbridge.xyz/task/submit \
  -H "X-API-Key: $SB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "service_type": "naples_recon",
    "payload": {
      "mission": "photo_recon",
      "location": "Piazza del Plebiscito, Naples",
      "photo_count": 5,
      "instructions": "Capture the square from all four corners + one center shot"
    }
  }'
# Python SDK
from siliconbridge import SiliconBridge
sb = SiliconBridge(api_key="sb_...")

result = sb.submit_task("naples_recon", {
    "mission": "location_scout",
    "location": "Via Chiaia 64, Naples",
    "instructions": "Check if the storefront is open, read any signage, note foot traffic level"
}, wait=True, timeout=3600)

print(result)
# {"status": "completed", "report": {"open": true, "signage": "Boutique Milano - Sale 50%", ...}}

What You Get Back

{
  "task_id": "abc-123",
  "status": "completed",
  "service_type": "naples_recon",
  "result": {
    "mission": "photo_recon",
    "location": "Piazza del Plebiscito, Naples",
    "operator_id": "op_naples_01",
    "completed_at": "2026-03-09T14:32:00Z",
    "photos": [
      {"url": "https://cdn.siliconbridge.xyz/missions/abc-123/photo_1.jpg", "gps": "40.8358,14.2488", "description": "North-facing view of the piazza"},
      {"url": "https://cdn.siliconbridge.xyz/missions/abc-123/photo_2.jpg", "gps": "40.8356,14.2490", "description": "Close-up of the basilica entrance"}
    ],
    "notes": "Moderate foot traffic, mostly tourists. Weather clear, 18C."
  },
  "fee_charged": 3.00
}

Coverage

Naples metro area — city center, waterfront, Spaccanapoli, Vomero, Posillipo, and surrounding neighborhoods.

Expanding to other cities soon. Want your city? Submit a task with service_type: "custom" and ask.

SLA

Dispatch: Operator dispatched within 15 minutes (daytime hours, CET).

Results: Photos/reports delivered within 1 hour. Live streams start within 20 minutes.

Refund: 100% refund if mission cannot be completed.

Agent Discovery

No new signup needed. If you already have a SiliconBridge API key, you can book Naples missions right now. Same auth, same API, same balance.

API Info
GET /api/naples
MCP
siliconbridge.xyz/mcp
Questions?
POST /task/submit
{"service_type": "custom"}

First 10 Missions Free

Your $10 signup credits cover your first 10 live stream minutes, or 3 photo recon missions, or 2 location scouts. No credit card needed.

Use Cases

Real estate agent: "Scout this address, tell me if the building looks maintained, check for sale signs."
Logistics agent: "Live stream the delivery drop point so I can confirm access before dispatching."
Research agent: "Photograph all restaurant menus on Via dei Tribunali for price comparison."
Travel agent: "Show me the current crowd level and weather at Castel dell'Ovo right now."