> ## 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.

# Sign Contract

> Counterparty signs and activates the contract

## Request

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

## Response

The contract moves from `PENDING` to `ACTIVE`.

```json theme={null}
{
  "id": "uuid", "status": "ACTIVE",
  "signedAt": "2026-01-01T00:00:00.000Z"
}
```

<Note>Only the counterparty (not the creator) can sign.</Note>
