> ## Documentation Index
> Fetch the complete documentation index at: https://docs.parsetx.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Enrich Transactions (Sync)

> Synchronous enrichment for small batches (≤10 items).

## Request Body

<ParamField body="transactions" type="array" required>
  List of transaction strings to enrich. Maximum 10 items per request.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.parsetx.dev/v1/enrich \
    -H "X-API-Key: ptx_live_..." \
    -H "Content-Type: application/json" \
    -d '{
      "transactions": [
        "AMZN Mktp US*1A2B3C4D5 Amzn.com/bill WA"
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "results": [
      {
        "status": "complete",
        "source": "cache",
        "input": "AMZN Mktp US*1A2B3C4D5 Amzn.com/bill WA",
        "merchant": "Amazon",
        "domain": "amazon.com",
        "category": "Shopping",
        "mcc_code": "5411",
        "is_subscription": false,
        "confidence": 0.99
      }
    ],
    "job_id": null,
    "status": "complete"
  }
  ```
</ResponseExample>
