# Cognilode Ticket Resale Underwriter

> Cognilode Ticket Resale Underwriter is a paid API for AI agents from cognilode.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Evaluates whether a ticket purchase is worth buying for resale by analyzing acquisition price, expected resale price, fees, and confidence factors to produce a buy/no-buy recommendation.

## Facts

- Endpoint: POST https://cognilode.com/api/x402/ticket-underwrite
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cognilode-ticket-resale-underwriter-b8db9552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ydEPAqSGH3cq-yE5b_3E8

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 cognilode-ticket-resale-underwriter-b8db9552 -d '<json body>'
```

Example prompt: I'm looking at buying 2 floor tickets to a Taylor Swift concert for $850 each — comps are selling for around $1,200. The seller fee is 12%, acquisition fee is 5%, and I expect a 30-day payout delay. Can you run a ticket underwrite to see if this is worth buying for resale, with a minimum ROI of 15%?

## When to prefer this

Use this endpoint when you need a structured, programmatic buy/no-buy decision on a ticket resale opportunity before committing funds. It is specifically designed for ticket secondary market analysis, incorporating seller fees, acquisition fees, payout delays, ROI thresholds, and confidence factors — making it more domain-specific than a generic financial calculator. Prefer this over manual spreadsheet math when you need fast, consistent underwriting logic at scale.

## Known failure modes

- Missing required fields (acquisitionPrice or expectedResalePrice) returns a validation error
- Negative or zero acquisition price causes schema rejection
- Transfer confidence or liquidity confidence values outside 0-1 range fail validation
- Invalid method type (e.g. GET instead of POST/PUT/PATCH) is rejected
- Payment failure or insufficient USDC balance blocks the request at the x402 layer

## How this service works

Cognilode ships production engineering, SignalCrew production AgentOps, Forge browser software creation, AutoYT video automation, technical products, cybersecurity work, and Care Network provider access.

## Output

Returns a JSON object with an 'ok' boolean indicating success, a 'result' object containing a summary with counts of how many tickets passed the buy threshold (e.g. buy: 1, total: 1), and the service identifier 'ticket-resale-underwriter'. A buy count equal to total means the deal is recommended; a buy count of 0 means the deal fails the underwriting criteria.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "event": {
       "type": "string"
      },
      "section": {
       "type": "string"
      },
      "quantity": {
       "type": "number",
       "minimum": 1
      },
      "acquisitionPrice": {
       "type": "number",
       "minimum": 0
      },
      "acquisitionFeePct": {
       "type": "number",
       "minimum": 0
      },
      "acquisitionFeesFixed": {
       "type": "number",
       "minimum": 0
      },
      "salesTaxPct": {
       "type": "number",
       "minimum": 0
      },
      "expectedResalePrice": {
       "type": "number",
       "minimum": 0
      },
      "sellerFeePct": {
       "type": "number",
       "minimum": 0
      },
      "sellerFeeFixed": {
       "type": "number",
       "minimum": 0
      },
      "payoutDelayDays": {
       "type": "number",
       "minimum": 0
      },
      "minNetProfit": {
       "type": "number",
       "minimum": 0
      },
      "minRoiPct": {
       "type": "number",
       "minimum": 0
      },
      "transferConfidence": {
       "type": "number",
       "minimum": 0,
       "maximum": 1
      },
      "liquidityConfidence": {
       "type": "number",
       "minimum": 0,
       "maximum": 1
      },
      "comps": {
       "type": "array",
       "items": {
        "type": "number",
        "minimum": 0
       }
      }
     },
     "required": [
      "acquisitionPrice",
      "expectedResalePrice"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "result": {
   "summary": {
    "buy": 1,
    "total": 1
   }
  },
  "service": "ticket-resale-underwriter"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cognilode-ticket-resale-underwriter-b8db9552/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cognilode.com](https://www.zero.xyz/host/cognilode.com/llms.txt)
