{
  "x402Version": 2,
  "id": 549,
  "slug": "549",
  "resource": "https://api.oblique.markets/api/v1/paid/base-wallet-profile",
  "description": "Use when an agent needs base wallet profile. Returns Accountless Base mainnet wallet profile with native and ERC-20 balances, bounded transfer activity, counterparties, contracts, freshness metadata and evidence hash. $0.01.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 60
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "10000",
      "maxTimeoutSeconds": 60
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "address": "example"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "activity": {
              "complete_for": "all_discovered_erc20_transfers",
              "first_block": 33700001,
              "last_block": 33712501,
              "outgoing_transaction_count": 42,
              "transfer_log_count": 18
            },
            "address": "0x4200000000000000000000000000000000000006",
            "chain": "base",
            "chain_id": 8453,
            "contracts": [
              "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
            ],
            "counterparties": [
              {
                "counterparty": "0x1111111111111111111111111111111111111111",
                "transfers": 4
              }
            ],
            "evidence_hash": "sha256:3b7b2b5f3a0f8ef0d6b3c77e4a2d6cfb0c7f8b5d6f6e2b9a3d4c5e6f708192a3b",
            "freshness": {
              "latest_block": 33712501,
              "lookback_blocks": 10000,
              "observed_at": "2026-08-21T12:00:00.000Z",
              "rpc_source": "public_base_rpc"
            },
            "native": {
              "balance_eth": "0.125",
              "balance_wei": "125000000000000000"
            },
            "tokens": [
              {
                "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
                "balance": "1523.400000",
                "balance_raw": "1523400000",
                "decimals": 6
              }
            ]
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "address": {
                    "type": "string"
                  },
                  "asset": {
                    "description": "Optional native/base/eth or ERC-20 contract address",
                    "type": "string"
                  },
                  "chain": {
                    "enum": [
                      "base",
                      "base-mainnet",
                      "eip155:8453"
                    ],
                    "type": "string"
                  },
                  "include_counterparties": {
                    "type": "boolean"
                  },
                  "lookback_blocks": {
                    "type": "integer"
                  }
                },
                "required": [
                  "address"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "activity": {
                "properties": {
                  "complete_for": {
                    "type": "string"
                  },
                  "first_block": {
                    "type": "integer"
                  },
                  "last_block": {
                    "type": "integer"
                  },
                  "outgoing_transaction_count": {
                    "type": "integer"
                  },
                  "transfer_log_count": {
                    "type": "integer"
                  }
                },
                "type": "object"
              },
              "address": {
                "type": "string"
              },
              "chain": {
                "type": "string"
              },
              "chain_id": {
                "type": "integer"
              },
              "contracts": {
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "counterparties": {
                "items": {
                  "properties": {
                    "counterparty": {
                      "type": "string"
                    },
                    "transfers": {
                      "type": "integer"
                    }
                  },
                  "type": "object"
                },
                "type": "array"
              },
              "evidence_hash": {
                "type": "string"
              },
              "freshness": {
                "properties": {
                  "latest_block": {
                    "type": "integer"
                  },
                  "lookback_blocks": {
                    "type": "integer"
                  },
                  "observed_at": {
                    "type": "string"
                  },
                  "rpc_source": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "native": {
                "properties": {
                  "balance_eth": {
                    "type": "string"
                  },
                  "balance_wei": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "tokens": {
                "items": {
                  "properties": {
                    "address": {
                      "type": "string"
                    },
                    "balance": {
                      "type": "string"
                    },
                    "balance_raw": {
                      "type": "string"
                    },
                    "decimals": {
                      "type": "integer"
                    }
                  },
                  "type": "object"
                },
                "type": "array"
              }
            },
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.oblique.markets",
  "lastUpdated": "2026-09-14T06:48:41.776Z",
  "quality": {
    "calls30d": 8,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-14T06:48:41.644Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.oblique.markets",
    "manifest_name": "api.oblique.markets",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}