foreca.fi
Foreca
Foreca is a Finnish weather website offering real‑time weather, detailed forecasts, weather maps, UV index, and specialized services such as golf weather, lake temperatures, and travel weather. Users can access current conditions, 10‑day and 15‑day forecasts, satellite imagery, and historical weather data for Finland and worldwide.
55
Partly agent-ready
Agent-readiness score out of 100
- ✓ Clear description of the site
- ✓ Several pages described
- ✓ Actions agents can take
- ✓ 3 or more actions
- ○ Publishes its own LAWP (/.well-known/lawp.json)
- ○ Actions agents can execute
- ○ Business details (address, hours, phone)
How to improve this score
Up to +45 points:
+15 · Publishes its own LAWP (/.well-known/lawp.json)
Publish your starter lawp.json at
Publish your starter lawp.json at
/.well-known/lawp.json. WordPress: install the Actuent plugin. Cloudflare: use the one-click Worker.+15 · Actions agents can execute
Give an action an
Give an action an
endpoint on your domain so agents can do it for the user, not just link to it. See LAWP Actions.+15 · Business details (address, hours, phone)
Add schema.org business data to your homepage (the starter snippet). Google uses it too.
Add schema.org business data to your homepage (the starter snippet). Google uses it too.
Starter lawp.json for foreca.fi
Made from what Actuent already knows. Edit it, then publish it at
https://foreca.fi/.well-known/lawp.json. Check it with the LAWP Checker, or edit it in the LAWP Generator.{
"lawp_version": "0.3",
"domain": "foreca.fi",
"name": "Foreca",
"language": "en",
"pages": {
"/": {
"title": "Sää Suomeen ja ulkomaille",
"content": "Foreca is a Finnish weather website offering real‑time weather, detailed forecasts, weather maps, UV index, and specialized services such as golf weather, lake temperatures, and travel weather. Users can access current conditions, 10‑day and 15‑day forecasts, satellite imagery, and historical weather data for Finland and worldwide."
},
"/Spain/els_Plans_de_Sio": {
"title": "Täsmäsää els Plans de Sio - Foreca.fi",
"content": "Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русский தமிழ் తెలుగు Türkç"
},
"/Thailand/Mission_Hills": {
"title": "Täsmäsää Mission Hills - Foreca.fi",
"content": "Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русский தமிழ் తెలుగు Türkç"
},
"/Switzerland/La_Cote-aux-Fees": {
"title": "Täsmäsää La Côte-aux-Fées - Foreca.fi",
"content": "Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русский தமிழ் తెలుగు Türkç"
},
"/Kenya/Samburu_National_Reserve": {
"title": "Täsmäsää Samburu National Reserve - Foreca.fi",
"content": "Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русский தமிழ் తెలుగు Türkç"
},
"/Kenya/Masai_Mara_National_Reserve": {
"title": "Täsmäsää Masai Mara National Reserve - Foreca.fi",
"content": "Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русский தமிழ் తెలుగు Türkç"
}
},
"actions": [
{
"id": "get_current_weather",
"name": "Current Weather",
"input": {
"type": "text",
"required": false
},
"intent": [
"weather",
"current"
],
"description": "Retrieve the current weather conditions for a specified location"
},
{
"id": "get_forecast",
"name": "Weather Forecast",
"input": {
"type": "text",
"required": false
},
"intent": [
"weather",
"forecast",
"10day"
],
"description": "Get a 10‑day weather forecast for a specified location"
},
{
"id": "get_uv_index",
"name": "UV Index",
"input": {
"type": "text",
"required": false
},
"intent": [
"weather",
"uv"
],
"description": "Retrieve the current UV index for a specified location"
},
{
"id": "get_weather_map",
"name": "Weather Map",
"input": {
"type": "text",
"required": false
},
"intent": [
"weather",
"map"
],
"description": "Display a weather map for a specified region"
},
{
"id": "contact",
"name": "Contact",
"description": "Send a message to Foreca",
"intent": [
"contact",
"message",
"email",
"get in touch"
],
"input": {
"type": "object",
"required": true,
"fields": [
{
"name": "name",
"type": "string",
"required": true
},
{
"name": "email",
"type": "email",
"required": true
},
{
"name": "message",
"type": "string",
"required": true
}
]
}
}
]
}Starter schema.org snippet
Replace the example values, then paste into your homepage's <head>.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Foreca",
"url": "https://foreca.fi",
"telephone": "+00 0000 0000",
"priceRange": "€€",
"address": {
"@type": "PostalAddress",
"streetAddress": "Street 1",
"postalCode": "0000",
"addressLocality": "City",
"addressCountry": "DK"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "09:00",
"closes": "17:00"
}
]
}
</script>What AI agents can do here
Current Weather
Retrieve the current weather conditions for a specified location
weathercurrentWeather Forecast
Get a 10‑day weather forecast for a specified location
weatherforecast10dayUV Index
Retrieve the current UV index for a specified location
weatheruvWeather Map
Display a weather map for a specified region
weathermapPages
Sää Suomeen ja ulkomaille /
Foreca is a Finnish weather website offering real‑time weather, detailed forecasts, weather maps, UV index, and specialized services such as golf weather, lake temperatures, and travel weather. Users can access current conditions, 10‑day and 15‑day forecasts, satellite imagery, a
Täsmäsää els Plans de Sio - Foreca.fi /Spain/els_Plans_de_Sio
Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русски
Täsmäsää Mission Hills - Foreca.fi /Thailand/Mission_Hills
Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русски
Täsmäsää La Côte-aux-Fées - Foreca.fi /Switzerland/La_Cote-aux-Fees
Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русски
Täsmäsää Samburu National Reserve - Foreca.fi /Kenya/Samburu_National_Reserve
Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русски
Täsmäsää Masai Mara National Reserve - Foreca.fi /Kenya/Masai_Mara_National_Reserve
Klo Ilma Tie Yritys Tuotteet ja palvelut Yhteystiedot Språk / Language Svenska English (Intl) English (US) বাংলা български Čeština Dansk Deutsch Eesti Ελληνικά Español Français ગુજરાતી हिन्दी Hrvatski ಕನ್ನಡ Latviešu Magyar മലയാളം Italiano Nederlands Polski ਪੰਜਾਬੀ Româneşte Русски
For AI agents
Get this site as structured JSON:
GET https://api.actuent.ai/api/search?q=foreca.fi
Or connect Actuent to ChatGPT or Claude:
https://agents.actuent.ai/api/mcpLast updated 23 Sep 2026
Is this your site?
Claim foreca.fi to edit what AI agents see, make your actions executable, and show your score:
Show your score:
<script src="https://api.actuent.ai/badge.js" data-domain="foreca.fi" async></script> or the image https://api.actuent.ai/badge.svg?domain=foreca.fi&style=cardActuent is a search engine for AI agents, made by localilabs. Data is generated automatically from public web content and may be incomplete.
