# Visual Crossing Weather API **Provider:** Visual Crossing Weather **Category:** weather **Base URL:** `https://weather.visualcrossing.com` **Auth:** none — `# No auth required` **Rate Limit:** See documentation **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://www.visualcrossing.com/weather-api ## Description Weather Forecast and Historical Weather Data via RESTful API. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/{location}` | Historical and Forecast Weather API | | GET | `https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/{location}/{startdate}` | Historical and Forecast Weather API | | GET | `https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/{location}/{startdate}/{enddate}` | Historical and Forecast Weather API | | GET | `https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/weatherdata/forecast` | Weather Forecast API | | GET | `https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/weatherdata/history` | Retrieves hourly or daily historical weather records. | ## Authentication No authentication required ``` # No auth required ``` ## Sample Request ```bash curl -X GET 'https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/{location}' \ -H '# No auth required' ``` ## Sample Response ```json {} ``` ## Pricing Details Free — open public API, no authentication required. --- *Source: [API Map](https://apimap.dev/apis/visual-crossing-weather/) — CC BY 4.0*