Get weather data, timezone information, and geographic calculations
Beta Release - This action is in beta. We'd love your feedback! Open an issue if you encounter any problems.

Browse All APIs | Get Free API Key | Documentation
This action provides access to APIVerve's Weather & Geo APIs directly in your GitHub workflows:
- Get current weather conditions
- Get time in different timezones
- Calculate distances between locations
- Get sunrise/sunset times
| API | Description |
|---|---|
weather |
weather API |
worldtime |
World Time is a simple tool for getting the current time in any city. It returns the current time, date, and more. |
timezonelookup |
Timezone Lookup is a simple tool for looking up timezone data. It returns the timezone name, offset, and more. |
distancecalculator |
Distance Calculator is a simple tool for calculating the distance between two locations. It returns the distance in miles and kilometers. |
sunrisesunset |
Sunrise Sunset is a simple tool for getting the sunrise and sunset times. It returns the sunrise and sunset times for a given location and date. |
- name: Weather & Geo
uses: apiverve/action-weather-geo@v1
with:
api_key: ${{ secrets.APIVERVE_KEY }}
api: weather
params: '{"city": "New York"}'Sign up for a free account at dashboard.apiverve.com/signup and create an API key.
Go to your repository Settings → Secrets and variables → Actions → New repository secret
- Name:
APIVERVE_KEY - Value: Your API key from the dashboard
- name: Weather & Geo
uses: apiverve/action-weather-geo@v1
with:
api_key: ${{ secrets.APIVERVE_KEY }}
api: weather
params: '{"your": "parameters"}'| Input | Description | Required | Default |
|---|---|---|---|
api_key |
Your APIVerve API key (or set APIVERVE_API_KEY env var) |
Yes* | - |
api |
API to use: weather, worldtime, timezonelookup, distancecalculator, sunrisesunset |
No | weather |
params |
JSON parameters for the API | No | {} |
output_file |
Path to save binary output (images, PDFs) | No | - |
format |
Response format: json, yaml, or xml |
No | json |
fail_on_error |
Fail workflow if API returns error | No | true |
*API key is required but can be provided via input OR APIVERVE_API_KEY / APIVERVE_KEY environment variable.
| Output | Description |
|---|---|
result |
Full API response as JSON |
data |
The data field from response as JSON |
status |
API status (ok or error) |
file |
Path to downloaded file (if output_file was used) |
Get current weather for a location
- name: Weather Check
id: weather-geo-0
uses: apiverve/action-weather-geo@v1
with:
api_key: ${{ secrets.APIVERVE_KEY }}
api: weather
params: '{"city": "New York"}'
- name: Use result
run: echo "Result: ${{ steps.weather-geo-0.outputs.data }}"Get current time in a timezone
- name: World Time
id: weather-geo-1
uses: apiverve/action-weather-geo@v1
with:
api_key: ${{ secrets.APIVERVE_KEY }}
api: worldtime
params: '{"timezone": "America/New_York"}'
- name: Use result
run: echo "Result: ${{ steps.weather-geo-1.outputs.data }}"name: Weather & Geo Workflow
on:
push:
branches: [main]
workflow_dispatch:
jobs:
weather-geo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Weather & Geo
id: result
uses: apiverve/action-weather-geo@v1
with:
api_key: ${{ secrets.APIVERVE_KEY }}
api: weather
params: '{"city": "New York"}'
- name: Show result
run: |
echo "Status: ${{ steps.result.outputs.status }}"
echo "Data: ${{ steps.result.outputs.data }}"Looking for more APIVerve actions?
- apiverve/action - Generic action for all 350+ APIs
- apiverve/action-release-assets - Generate QR codes, barcodes, and badges for your GitHub releases
- apiverve/action-visual-testing - Capture screenshots and generate PDFs for visual regression testing and documentation
- apiverve/action-dns-monitor - Verify DNS configuration, check propagation, and validate DNSSEC after deployments
- Free tier - Get started with generous free limits
- Pro plans - Higher rate limits and priority support for production use
Check out pricing details.
- API Documentation: docs.apiverve.com
- API Marketplace: apiverve.com/marketplace
- Issues & Support: GitHub Issues
- Email: support@apiverve.com
MIT - see LICENSE
Built by APIVerve - 350+ APIs for developers