# Agentic Swarm Marketplace Intake Bundle Replay

> Agentic Swarm Marketplace Intake Bundle Replay is a paid API for AI agents from api.agentic-swarm-marketplace.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-22).

Replays a previously minted intake bundle by pack_id, returning the same artifact files as the T54 rail, settled in Base USDC.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/intake-resale
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-22
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-swarm-marketplace-intake-bundle-replay-d0126327
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CmcjCftMPSIr8sqNC-EMZ

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 agentic-swarm-marketplace-intake-bundle-replay-d0126327
```

Example prompt: Can you replay the intake bundle for pack ID 'abc-12345' from the swarm marketplace and give me the artifact files?

## When to prefer this

Use this endpoint when you need to replay or re-access a specific previously minted intake bundle artifact set identified by a known pack_id, particularly in agent resale workflows where the same artifact output needs to be retrieved deterministically. Prefer this over generic marketplace fetch endpoints when you specifically need T54 rail artifact files settled in Base USDC.

## Known failure modes

- pack_id not found or invalid — bundle does not exist
- payment failure — Base USDC settlement not completed
- missing required pack_id query parameter — request rejected
- T54 rail artifacts unavailable or expired
- rate limiting or service unavailability at $0.05 per call

## How this service works

Replays a minted intake bundle by pack_id (same artifact files as the T54 rail), settled in Base USDC.

## Output

Returns the same artifact files originally produced and minted under the specified pack_id on the T54 rail, delivered as a structured commerce bundle settled in Base USDC. The response includes the artifact output object with type and example fields describing the bundle contents.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pack_id"
     ],
     "properties": {
      "pack_id": {
       "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/agentic-swarm-marketplace-intake-bundle-replay-d0126327/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentic-swarm-marketplace.com](https://www.zero.xyz/host/api.agentic-swarm-marketplace.com/llms.txt)
