We are currently working on our REST & MCP APIs.
If you want to get access send us a quick email with your use case and we'll invite you as soon as things are ready → support@galefox.com
Our API extracts and collects a lot of information via our network of crawlers and 3rd party data providers. Each domain we crawl is converted to a standardized data format (including design & branding info).
Below you will find an example of some of the data we collect. We have 100+ more data categories collected including news, employee data, social media posts, privacy policies, competitor graphs, and a whole lot more.
{
"domain": "example.com"
// Example safe backup files
"safe_icon": "xxx.galefox.com/example.com/favicon.ico",
"safe_screenshot": "xxx.galefox.com/example.com/screenshot.png",
"markdown": "xxx.galefox.com/example.com/markdown.md",
"html": "xxx.galefox.com/example.com/html.html",
// Example data from root domain's <meta> tags data
"metadata": {
"title": "title as extracted from domain root",
"language": "en",
"icon": "https://example.com/favicon.ico",
"description": "description as extracted from domain root",
"open_graph": {
"title": "title as shown in meta tags",
"description": "og description as shown in meta tags",
"image": "https://example.com/share-image.png"
},
"twitter": {
"card": "summary_large_image",
"title": "title as shown in meta tags",
"description": "og description as shown in meta tags",
"image": "https://example.com/share-image.png"
},
"technologies": [
{
"name": "React",
"category": "JS Framework"
}, {
"name": "Tailwind CSS",
"category": "CSS Framework"
},
...
],
"internal_links": [
"https://example.com/pricing",
"https://example.com/policy",
...
],
"external_links": [
"https://site-linked-from-example.com/",
"https://another-site-linked-from-example.com/",
...
]
},
// Example business entity data from enrichment pipeline
"entity": {
"profile": "Up to 1000 words description of the domain that summarizes the key offering...",
"identities": [
{
"type": "email",
"value": "abc@example.com",
"source": "html",
"confidence": "high"
}, {
"type": "address",
"value": "some address somewhere",
"source": "enrichment",
"confidence": "medium"
}, {
"type": "phone",
"value": "+000000...",
"source": "enrichment",
"confidence": "medium"
}, {
"type": "social",
"value": "https://linkedin.com/...",
"source": "enrichment",
"confidence": "medium"
},
...
],
"keywords": [
"robotics data",
"embodied ai",
"robot training data",
...
],
"canonical_concept": "Embodied AI data services",
"short_summary": "A short 2 sentence summary of the domain and what it does...",
"long_summary": "A slightly longer description focused on the features and direct offering...",
"moat": "A quick summary of the domain's advantages over its peer...",
"sample_queries": [
"Where can robotics teams buy real-world training data?",
"How do I collect data for embodied AI robots?",
"Find annotated human activity datasets for robot learning.",
...
],
"themes": [
"Embodied AI",
"Robotics training data",
"Human activity capture",
...
],
"categories": [
"SaaS",
"Data services",
"Artificial intelligence",
...
],
"industries": [
"Robotics",
"Artificial intelligence",
"Data services",
...
],
"locations": [
{
"name": "Ghana",
"code": "GH",
"type": "country"
}, {
"name": "Tamale",
"code": "TML",
"type": "city"
},
...
],
"target_audiences": [
{
"title": "Robotics teams",
"reason": "Robotics developers need diverse, annotated real-world data for model training.",
"outcome": "Receive clean datasets with egocentric video, body pose, depth maps, semantic labels, and activity segmentation."
}, {
"title": "AI researchers",
"reason": "Researchers need physical-world examples beyond controlled laboratory demonstrations.",
"outcome": "Access varied human activity data for embodied AI and robot learning."
},
...
],
"pain_points": [
"Robotics teams lack sufficient physical-world training data.",
"Existing teleoperation datasets are limited in scale and variety.",
...
],
"selling_points": [
"End-to-end data collection and teleoperation services.",
"Real-world activity captured across diverse environments and continents.",
"Egocentric video showing natural hand-object interactions.",
...
],
"features": [
"Hardware distribution",
"Data collection",
"Collector training",
...
],
"competitors": [
"ABC inc Ltd",
"xyz C-corp",
...
],
"security_frameworks": [
{
"framework": "GDPR",
"status": "compliant"
},
...
],
"social_proofs": [
"Y Combinator backing",
"Trusted by frontier robotics teams",
"Collection across 3 continents",
...
],
"integrations": [
"Salesforce",
"Gmail",
...
]
},
// Example design analysis --> determine branding & design system
"design_tokens": {
"colors": [
{
"type": "page",
"value": "rgba(13,17,23,1)",
"weight": 1
}, {
"type": "surface",
"value": "rgba(38,190,207,1)",
"weight": 5
},
...
],
"typography": [
{
"font_family": [
"Poppins",
"sans-serif"
],
"font_size": "46px",
"font_weights": [
500
],
"line_heights": [
"64px"
],
"font_styles": [
"normal"
],
"letter_spacings": [
"0px"
],
"text_transforms": [
"none"
],
"weight": 1,
"prominence": 2116
}, {
"font_family": [
"Poppins",
"sans-serif"
],
"font_size": "28px",
"font_weights": [
500
],
"line_heights": [
"28px"
],
"font_styles": [
"normal"
],
"letter_spacings": [
"2px"
],
"text_transforms": [
"uppercase"
],
"weight": 1,
"prominence": 784
},
...
],
"corners": [
{
"type": "corner",
"radius": "5%",
"weight": 8
}, {
"type": "corner",
"radius": "50%",
"weight": 12
}
],
"borders": [
{
"type": "border",
"width": "1px",
"style": "solid",
"weight": 58
}
],
"spacings": [
{
"type": "spacing",
"value": "2px",
"weight": 9
}, {
"type": "spacing",
"value": "4px",
"weight": 4
},
...
],
"sizes": [
{
"type": "size",
"percentile": 10,
"width": "131px",
"weight": 16
}, {
"type": "size",
"percentile": 20,
"width": "244px",
"weight": 31
},
...
]
}
}