Crypto Analysis & Developer Tools · x402 V2

AMM Price Impact

Use this service when you need this capability: calculate constant-product execution price and price impact from supplied pool state.

Price and endpoint

LivePOSTBase USDC

0.01 USDC per call

x402 V2 exact payment on Base mainnet (eip155:8453) using USDC. The HTTP 402 challenge confirms the exact requirements before an authorized payment.

POST https://signalharness.ai/api/agent/services/defi_price_impact/invoke

Purpose

Calculate constant-product execution price and price impact from supplied pool state.

Caller-supplied data is processed deterministically. These tools do not supply live market feeds, query blockchain RPC, host AI models, or verify that supplied history is complete. Payment remains Base USDC for every chain category.

Inputs

Request fields and validation limits
FieldTypeRequiredLimits
price_impact_requeststringRequiredMinimum length 2; Maximum length 65536

Example request body

{
  "price_impact_request": "{\"reserve_in\":\"1000\",\"reserve_out\":\"2000\",\"amount_in\":\"10\",\"fee_bps\":30}"
}
View complete input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "maxProperties": 1,
  "required": [
    "price_impact_request"
  ],
  "properties": {
    "price_impact_request": {
      "type": "string",
      "minLength": 2,
      "maxLength": 65536
    }
  }
}

Realistic output shape

Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.

{
  "service_id": "defi_price_impact",
  "evidence_scope": "caller_supplied_data",
  "price_impact": "{\"execution_price\":\"1.974316068794122597\",\"price_impact_percent\":\"1.284196560293\",\"spot_price\":\"2\"}",
  "warnings": [
    "Calculation is a deterministic model, not an executable quote."
  ]
}
View complete output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 4,
  "maxProperties": 4,
  "required": [
    "service_id",
    "evidence_scope",
    "price_impact",
    "warnings"
  ],
  "properties": {
    "service_id": {
      "type": "string",
      "const": "defi_price_impact",
      "minLength": 17,
      "maxLength": 17
    },
    "evidence_scope": {
      "type": "string",
      "const": "caller_supplied_data",
      "minLength": 20,
      "maxLength": 20
    },
    "price_impact": {
      "type": "string",
      "minLength": 1,
      "maxLength": 65536
    },
    "warnings": {
      "type": "array",
      "minItems": 1,
      "maxItems": 8,
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 512
      }
    }
  }
}

Execution limits

  • MaxInputBytes: 131072
  • MaxOutputBytes: 131072
  • MaxConcurrentExecutions: 2
  • MaxArtifacts: 0
  • MaxArtifactBytes: 0
  • RateLimitPerMinute: 30
  • MaxNodes: 10000

Timeout: 5000 ms. Full schemas are in OpenAPI.

Copyable unpaid request

This schema-valid request returns the canonical HTTP 402 challenge without executing the service. A payment-capable client validates the challenge, signs only with prior authority and budget, and retries the identical body.

curl -i -X POST https://signalharness.ai/api/agent/services/defi_price_impact/invoke \
  -H "Content-Type: application/json" \
  --data '{"price_impact_request":"{\"reserve_in\":\"1000\",\"reserve_out\":\"2000\",\"amount_in\":\"10\",\"fee_bps\":30}"}'

Continue with the paid-call walkthrough →