F

forter.com

Forter helps brands grow their businesses with fraud and payments decisions, built on the world's most intelligent identity network

4read
2action
https://www.forter.com

live · AI Agents & Fintech · JSON · API for agents

Tools 6 tools

list_skillsread

List Forter's agent-skill catalog. Returns the v0.2.0 skill index covering order decisioning, account protection, dispute resolution, agentic commerce, PSP onboarding, tokenization, privacy requests, and contact-sales. Use to find which Forter capability fits a given user need.

View tool JSON
{
  "name": "list_skills",
  "kind": "read",
  "impl": "imperative",
  "description": "List Forter's agent-skill catalog. Returns the v0.2.0 skill index covering order decisioning, account protection, dispute resolution, agentic commerce, PSP onboarding, tokenization, privacy requests, and contact-sales. Use to find which Forter capability fits a given user need.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
get_openapi_specread

Fetch the canonical Forter REST OpenAPI 3.0.0 spec (info.version 10.2; 22 operations; 191 schemas). Use to understand request/response shapes for any Forter REST operation before recommending an integration.

View tool JSON
{
  "name": "get_openapi_spec",
  "kind": "read",
  "impl": "imperative",
  "description": "Fetch the canonical Forter REST OpenAPI 3.0.0 spec (info.version 10.2; 22 operations; 191 schemas). Use to understand request/response shapes for any Forter REST operation before recommending an integration.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "format": {
        "type": "string",
        "enum": [
          "json",
          "yaml"
        ],
        "description": "Return format. Default 'json'."
      }
    },
    "additionalProperties": false
  },
  "page": "/"
}
get_pricing_inforead

Return Forter's machine-readable pricing summary. Forter is enterprise-priced - volume-tiered and ACV-negotiated. Use to answer pricing questions WITHOUT estimating cost - always route the user to https://www.forter.com/contact-us/ for a quote.

View tool JSON
{
  "name": "get_pricing_info",
  "kind": "read",
  "impl": "imperative",
  "description": "Return Forter's machine-readable pricing summary. Forter is enterprise-priced - volume-tiered and ACV-negotiated. Use to answer pricing questions WITHOUT estimating cost - always route the user to https://www.forter.com/contact-us/ for a quote.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
search_documentationread

Search Forter's developer documentation index by keyword. Returns matching quickstart / reference / guide URLs from /docs/llms.txt. Use to point a user at the right doc page for an integration topic.

View tool JSON
{
  "name": "search_documentation",
  "kind": "read",
  "impl": "imperative",
  "description": "Search Forter's developer documentation index by keyword. Returns matching quickstart / reference / guide URLs from /docs/llms.txt. Use to point a user at the right doc page for an integration topic.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Free-text keyword (lowercased substring match against link text + URL)."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
contact_salesaction

Submit a sales-lead request via Forter's HubSpot form. AGENT MUST CONFIRM WITH USER BEFORE CALLING - this generates a real CRM lead and constitutes opt-in to sales contact per the Forter privacy policy at https://www.forter.com/privacy-policy/.

View tool JSON
{
  "name": "contact_sales",
  "kind": "action",
  "impl": "imperative",
  "description": "Submit a sales-lead request via Forter's HubSpot form. AGENT MUST CONFIRM WITH USER BEFORE CALLING - this generates a real CRM lead and constitutes opt-in to sales contact per the Forter privacy policy at https://www.forter.com/privacy-policy/.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "firstname": {
        "type": "string",
        "description": "Given name"
      },
      "lastname": {
        "type": "string",
        "description": "Family name"
      },
      "email": {
        "type": "string",
        "format": "email",
        "description": "Business email"
      },
      "phone": {
        "type": "string",
        "description": "Phone number with country code"
      },
      "jobtitle": {
        "type": "string",
        "description": "Job title"
      },
      "country": {
        "type": "string",
        "description": "ISO country name or code"
      },
      "how_did_you_hear_about_us_": {
        "type": "string",
        "description": "Referral source (free text)"
      }
    },
    "required": [
      "firstname",
      "lastname",
      "email",
      "phone",
      "jobtitle",
      "country",
      "how_did_you_hear_about_us_"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
switch_site_languageaction

Switch the Forter website to another language. Navigates to the localized version of the site. Supported: English, German (Deutsch), Chinese (中文 中国), Japanese (日本語), French (Français).

View tool JSON
{
  "name": "switch_site_language",
  "kind": "action",
  "impl": "declarative",
  "description": "Switch the Forter website to another language. Navigates to the localized version of the site. Supported: English, German (Deutsch), Chinese (中文 中国), Japanese (日本語), French (Français).",
  "inputSchema": {
    "type": "object",
    "properties": {
      "lang_choice_1": {
        "type": "string",
        "enum": [
          "https://www.forter.com/",
          "https://www.forter.com/de/",
          "https://www.forter.com/cn/",
          "https://www.forter.com/ja/",
          "https://www.forter.com/fr/"
        ]
      }
    }
  },
  "page": "/"
}