# x402_payQuote

Pay a previously quoted BSV service request from the connected wallet, then return its response. Only call after authorization for the service, amount, and total limit including mining fees. Reuses the stored URL, method, body and credentials. Wallet permission checks apply. Does not automatically pay changed terms or retry a failed payment.

## Result

Payment outcome and service response, or an error. Also returns structured content.

## Permissions

Call only after authorization for the quoted service and total spending limit. Wallet permission checks apply; changed terms are not paid automatically.

## Definition 1 (full)

Registered in: Local Vault · all roles; Local Vault · payment role only; Project · payments scope; External BRC-100 wallet; Local Vault + sponsor.

Pay a previously quoted BSV service request from the connected wallet, then return its response. Only call after authorization for the service, amount, and total limit including mining fees. Reuses the stored URL, method, body and credentials. Wallet permission checks apply. Does not automatically pay changed terms or retry a failed payment.

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| quoteId | string | Yes |  | pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}\|00000000-0000-0000-0000-000000000000\|ffffffff-ffff-ffff-ffff-ffffffffffff)$"; format: "uuid" |
| maxTotalSats | integer | Yes |  | maximum: 2100000000000000; exclusiveMinimum: 0 |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "quoteId": {
      "type": "string",
      "format": "uuid",
      "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
    },
    "maxTotalSats": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 2100000000000000
    }
  },
  "required": [
    "quoteId",
    "maxTotalSats"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

[All tools](https://bsvmcp.com/docs/tools)