# 01Mind Dynamic Endpoint dyn-9c6d8ecb1d01341b

> 01Mind Dynamic Endpoint dyn-9c6d8ecb1d01341b is a paid API for AI agents from 01mind.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-22).

Executes a dynamically-routed HTTP POST/PUT/PATCH request through the 01Mind platform for an unspecified capability identified by the dynamic ID dyn-9c6d8ecb1d01341b

## Facts

- Endpoint: POST https://01mind.net/purchase/dyn-9c6d8ecb1d01341b
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-22
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/01mind-dynamic-endpoint-dyn-9c6d8ecb1d01341b-75f1aeca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jTCFQfqFB3M2fqtjRPbtp

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 01mind-dynamic-endpoint-dyn-9c6d8ecb1d01341b-75f1aeca -d '<json body>'
```

Example prompt: Send a POST request with a JSON body through 01Mind's dynamic endpoint dyn-9c6d8ecb1d01341b — use the http type and json body format.

## When to prefer this

Choose this endpoint when you specifically need to interact with the 01Mind dynamic route identified by dyn-9c6d8ecb1d01341b and no better-described sibling endpoint covers your use case. Prefer named 01Mind endpoints (email, weather, FX, legal) for those specific domains.

## Known failure modes

- Missing required input fields (type, method, bodyType, body) returns validation error
- Invalid method enum value (not POST, PUT, or PATCH) causes rejection
- Unsupported bodyType value causes parsing failure
- Dynamic route dyn-9c6d8ecb1d01341b may be deregistered or unavailable, returning 404 or 402
- Payment of 0.003 USDC not provided causes x402 payment required response

## How this service works

01Mind listing: dyn-9c6d8ecb1d01341b

## Output

Returns an output object with a type field and an optional example object, representing the response from the dynamically routed handler behind dyn-9c6d8ecb1d01341b.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/01mind-dynamic-endpoint-dyn-9c6d8ecb1d01341b-75f1aeca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 01mind.net](https://www.zero.xyz/host/01mind.net/llms.txt)
