Categories

Number & Currency Extractor (数字/金额提取)

Extract numbers from text, supporting currency symbols and thousand separators

Extract amounts with currency symbols ($ ¥ € £ ₹ ¢ ₽)

Include decimal numbers in extraction

Choose how to format the extracted amounts

Filter out amounts below this value (optional)

Filter out amounts above this value (optional)

API Documentation

Request Endpoint

POST /en/api/tools/currency-extractor

Request Parameters

Parameter Name Type Required Description
text textarea Yes -
includeCurrency checkbox No Extract amounts with currency symbols ($ ¥ € £ ₹ ¢ ₽)
includeDecimals checkbox No Include decimal numbers in extraction
format select No Choose how to format the extracted amounts
minAmount number No Filter out amounts below this value (optional)
maxAmount number No Filter out amounts above this value (optional)

Response Format

{
  "key": {...},
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
JSON Data: JSON Data

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-currency-extractor": {
      "name": "currency-extractor",
      "description": "Extract numbers from text, supporting currency symbols and thousand separators",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=currency-extractor",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]