Raw schema
{
"type": "object",
"properties": {
"apiKey": {
"description": "SimpleFunctions API key. Get one at https://simplefunctions.dev/dashboard/keys",
"type": "string"
},
"source": {
"type": "object",
"properties": {
"action": {
"description": "Firecrawl action",
"type": "string",
"enum": [
"scrape",
"crawl",
"search",
"map",
"extract",
"batch_scrape"
]
},
"url": {
"description": "URL to scrape/crawl/map/extract",
"type": "string"
},
"urls": {
"description": "URLs for batch_scrape or extract",
"type": "array",
"items": {
"type": "string"
}
},
"query": {
"description": "Search query (for search action)",
"type": "string"
},
"options": {
"description": "Full Firecrawl passthrough options",
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
},
"required": [
"action"
]
},
"analysis": {
"description": "LLM analysis of scraped content",
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"model": {
"description": "Any OpenRouter model ID. Default: google/gemini-2.5-flash",
"type": "string"
},
"prompt": {
"description": "What to analyze in the scraped content",
"type": "string"
},
"schema": {
"description": "JSON Schema for structured output",
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"temperature": {
"type": "number"
}
},
"required": [
"enabled",
"prompt"
]
},
"enrich": {
"description": "Cross-reference with prediction markets",
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"topics": {
"description": "Topics to search in prediction markets",
"type": "array",
"items": {
"type": "string"
}
},
"includeIndex": {
"type": "boolean"
},
"venues": {
"type": "array",
"items": {
"type": "string",
"enum": [
"kalshi",
"polymarket"
]
}
},
"limit": {
"type": "number"
}
},
"required": [
"enabled",
"topics"
]
},
"webhook": {
"description": "Push results to a webhook",
"type": "object",
"properties": {
"url": {
"description": "HTTPS webhook URL",
"type": "string"
},
"format": {
"type": "string",
"enum": [
"full",
"brief",
"tweetable"
]
},
"headers": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string"
}
},
"secret": {
"description": "HMAC-SHA256 signing secret",
"type": "string"
}
},
"required": [
"url"
]
}
},
"required": [
"apiKey",
"source"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}