Parser Pete

Parser Pete is a simple web scraping tool that allows you to extract data from any website and convert it into JSON. You can use it with or without a JSON schema.

Use with JSON schema

// With schema
POST https://parserpete.com/api/v1/apify

{
   url: "https://www.wetter.com/vereinigte-staaten/new-york-city/US0NY0993.html",
   schema: {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
         "city": {
            "type": "string",
            "description": "The name of the city where the weather is reported."
         },
         "date": {
            "type": "string",
            "format": "date",
            "description": "The date of the weather report in YYYY-MM-DD format."
         },
         "todaysWeatherInCelcius": {
            "type": "number",
            "description": "The current temperature in Celsius."
         }
      },
      "required": [ "city", "date", "todaysWeatherInCelcius" ]
   }
}
// Response
{
   "city": "New York City",
   "date": "2025-02-15",
   "todaysWeatherInCelcius": -2
}

Use without JSON schema

// Request without schema
POST https://parserpete.com/api/v1/apify

{
   url: "https://www.wetter.com/vereinigte-staaten/new-york-city/US0NY0993.html"
}
// Response
{
   "weather": {
      "city": "New York City",
      "date": "15.02.2025",
      "morning": {
         "condition": "Bedeckt",
         "temperature": {
            "high": 1,
            "low": -3
         },
         "additional_info": {
            "wind_speed": {
               "min": 24,
               "max": 44
            },
            "feels_like": {
               "min": -6,
               "max": -2
            },
            "total_precipitation": "10.56 l/m²"
         }
      }
   }
}