# SYLPHY Match Status Lookup

> SYLPHY Match Status Lookup is a paid API for AI agents from api.sylphyagent.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Retrieves the current match/settlement status of a previously submitted encrypted trading intent by its intent ID

## Facts

- Endpoint: GET https://api.sylphyagent.com/api/match-status
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sylphy-match-status-lookup-874b30bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KnMKfIO_C6e4tsXonHRZ-

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 sylphy-match-status-lookup-874b30bc
```

Example prompt: Can you check whether my Sylphy trading intent with ID 0xabc123 has been matched and settled yet, and give me the transaction hash if it has?

## When to prefer this

Use this endpoint after submitting a private encrypted trading intent via Sylphy to poll or confirm whether the intent has been matched and settled on Base. Ideal for agents that need to verify on-chain settlement status without re-querying the blockchain directly. Prefer this over raw blockchain lookups when working within the Sylphy encrypted-intent ecosystem.

## Known failure modes

- intentId not found or invalid — returns error or empty result
- Intent pending and not yet matched — status reflects unmatched state
- Network or API downtime — HTTP 5xx error
- Missing required intentId query parameter — validation error
- Malformed intentId format — parsing or lookup error

## How this service works

Sylphy helps wallets, apps, and AI agents execute payments and settlements with encrypted intent, policy checks, and audit proofs — while final settlement remains verifiable on Base.

## Output

Returns a JSON object with the intent's current status (e.g. 'matched'), the on-chain transaction hash (txHash) of the settlement on Base, and the original intentId for confirmation.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "intentId"
     ],
     "properties": {
      "intentId": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "matched",
  "txHash": "0xdef...",
  "intentId": "0xabc..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sylphy-match-status-lookup-874b30bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sylphyagent.com](https://www.zero.xyz/host/api.sylphyagent.com/llms.txt)
