/extract-company-descriptionReturn a short company description from a homepage: og:description > meta description > first meaningful paragraph. Cleaned, single-line, truncated to ~280 chars. Never invents text that is not on the page.
{
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}{
"properties": {
"company_name": {
"type": [
"string",
"null"
]
},
"confidence": {
"type": "number"
},
"description": {
"type": [
"string",
"null"
]
},
"source": {
"enum": [
"og_description",
"meta_description",
"first_paragraph",
"unavailable"
],
"type": "string"
}
},
"type": "object"
}{
"url": "https://example.com"
}{
"company_name": "Example",
"confidence": 0.85,
"description": "Example provides API tooling for developers.",
"source": "meta_description"
}