action callfire_is_keyword_available { label: "Check for a specific keyword" description: "Searches for the specific keyword to purchase on the CallFire platform. Returns 'true' if keyword is available. Keyword should only consist of uppercase and lowercase letters and numbers. Number of characters must be greater than 2, but less than 65." provider: callfire method: GET path: "/keywords/{keyword}/available" encoding: json input: { type: "object" properties: { keyword: { type: "string" } } required: ["keyword"] additionalProperties: false } output: { type: "boolean" } }