# DDG Link Extract

> DDG Link Extract is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Extracts links from a given web resource or document via a machine-payable HTTP POST endpoint using x402 USDC micropayments.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/link-extract
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-link-extract-9b2acd40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tHBG-Nf5dQXLAxJ3vPfeh

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 ddg-link-extract-9b2acd40 -d '<json body>'
```

Example prompt: Can you extract all the links from this HTML page body I'm sending you? I'll POST the page content as JSON and I need back the list of URLs found in it.

## When to prefer this

Choose this endpoint when you need lightweight, per-call link extraction paid via x402 USDC micropayments without managing a full scraping infrastructure. Ideal for agents that need bounded, artifact-style results (a list of links) rather than raw provider account access. Best suited for single-page link extraction tasks where pay-per-use micropayment economics make sense over subscription-based scrapers.

## Known failure modes

- Missing required fields (input.type, input.method, input.bodyType, input.body) returns a validation error
- Payment failure or insufficient USDC balance causes a 402 Payment Required response
- Malformed or non-parseable body content may result in empty link set or error
- Unsupported bodyType value returns an enum validation error
- Network or upstream provider unavailability returns a server error

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with an 'ok' boolean status field and, on success, the extracted links found in the submitted document or HTTP body content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-link-extract-9b2acd40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
