# Friday Seller Tools – Amazon FBA Removal Order Reconciliation

> Friday Seller Tools – Amazon FBA Removal Order Reconciliation is a paid API for AI agents from friday-seller-tools-production.up.railway.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Reconciles Amazon FBA removal orders by matching requested removals against received inventory and identifying discrepancies.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/amazon/fba/removal-order-reconciliation
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/friday-seller-tools-amazon-fba-removal-order-reconciliation-15ac04a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-eucRGe7Fgws-tUtYoPnE

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 friday-seller-tools-amazon-fba-removal-order-reconciliation-15ac04a6 -d '<json body>'
```

Example prompt: I need to reconcile my Amazon FBA removal orders — can you match the quantities I requested to remove against what was actually received back and flag any discrepancies or missing units?

## When to prefer this

Choose this endpoint when you specifically need to reconcile Amazon FBA removal orders — matching requested removal quantities against actual units received — and want a low-cost, instant-turnaround deliverable without building custom reconciliation logic. Ideal for Amazon sellers who regularly audit fulfillment center returns or need to prepare evidence for Amazon reimbursement claims.

## Known failure modes

- Missing or malformed removal order data returns a validation error
- Unrecognized ASIN or order ID fields may cause partial reconciliation
- Service may return queued status with delayed results if processing load is high
- Payment failure (insufficient USDC) blocks job creation
- Mismatched data formats between removal order input and FBA records may produce incomplete reconciliation

## How this service works

Instant, low-cost Amazon, Walmart, Shopify, and eBay listing, upload-preparation, advertising, and image-brief deliverables.

## Output

Returns a job_id and status (e.g. 'queued') immediately upon submission. The reconciliation report — once processed — includes matched removal orders, units requested vs. received, identified discrepancies, and a list of unresolved or short-shipped orders.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "records": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "FbaRemovalOrderRecord",
    "required": [
     "record_reference",
     "order_id",
     "request_date",
     "order_type",
     "order_status",
     "last_updated_date",
     "sku",
     "disposition",
     "requested_quantity"
    ],
    "properties": {
     "sku": {
      "type": "string",
      "title": "Sku",
      "maxLength": 120,
      "minLength": 1
     },
     "fnsku": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 120,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Fnsku",
      "default": null
     },
     "order_id": {
      "type": "string",
      "title": "Order Id",
      "maxLength": 120,
      "minLength": 1
     },
     "order_type": {
      "type": "string",
      "title": "Order Type",
      "maxLength": 80,
      "minLength": 1
     },
     "disposition": {
      "enum": [
       "sellable",
       "unsellable",
       "unknown"
      ],
      "type": "string",
      "title": "Disposition"
     },
     "removal_fee": {
      "type": "number",
      "title": "Removal Fee",
      "default": 0,
      "maximum": 100000000,
      "minimum": 0
     },
     "order_status": {
      "enum": [
       "pending",
       "processing",
       "completed",
       "cancelled",
       "mixed",
       "unknown"
      ],
      "type": "string",
      "title": "Order Status"
     },
     "request_date": {
      "type": "string",
      "title": "Request Date",
      "format": "date"
     },
     "service_speed": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 80,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Service Speed",
      "default": null
     },
     "record_reference": {
      "type": "string",
      "title": "Record Reference",
      "maxLength": 120,
      "minLength": 1
     },
     "shipped_quantity": {
      "type": "integer",
      "title": "Shipped Quantity",
      "default": 0,
      "maximum": 10000000,
      "minimum": 0
     },
     "disposed_quantity": {
      "type": "integer",
      "title": "Disposed Quantity",
      "default": 0,
      "maximum": 10000000,
      "minimum": 0
     },
     "last_updated_date": {
      "type": "string",
      "title": "Last Updated Date",
      "format": "date"
     },
     "cancelled_quantity": {
      "type": "integer",
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "job_id": "example",
  "status": "queued"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/friday-seller-tools-amazon-fba-removal-order-reconciliation-15ac04a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from friday-seller-tools-production.up.railway.app](https://www.zero.xyz/host/friday-seller-tools-production.up.railway.app/llms.txt)
