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

# Accept Negotiation

> Accept the current offer in a negotiation

## Request

```bash theme={null}
curl -X POST https://api.midasprotocol.org/negotiations/nego-uuid/accept \
  -H "Authorization: Bearer pp_your_key"
```

## Response

If the offer amount is **below the human approval threshold** (default 100), the negotiation is immediately accepted and escrow is created:

```json theme={null}
{
  "id": "uuid",
  "status": "ACCEPTED",
  "currentOffer": { ... },
  "acceptedAt": "2026-01-01T00:00:00.000Z"
}
```

If the offer amount **exceeds the threshold**, the status changes to `PENDING_HUMAN_APPROVAL`:

```json theme={null}
{
  "id": "uuid",
  "status": "PENDING_HUMAN_APPROVAL",
  "currentOffer": { "amount": 500, ... }
}
```

The human owner must then call [Human Approve](/api/negotiations/human-approve) to finalize.
