Find an API

Search public APIs with auth details & Postman guides

← All APIs

ODWeather

oceandrivers · Data

Data No Auth Free & Open open_data

This is the api to access the ODWeather API information

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET getWebCams

Get forecast and realtime information for known points None

https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWebCams/";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getEasywind

Get data from the easywind weather stations None

https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}?period=latestdata

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/?period=latestdata"
import requests
params = {
    "period": "latestdata"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/');
url.searchParams.set('period', 'latestdata');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/")
	q := baseURL.Query()
	q.Set("period", "latestdata")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/")
uri.query = URI.encode_www_form({
  "period" => "latestdata"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getEasyWind/{easywindId}/?" . http_build_query([
    "period" => "latestdata"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getWeatherDisplay

Get data from the weather display software None

https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}?period=latestdata

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/?period=latestdata"
import requests
params = {
    "period": "latestdata"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/');
url.searchParams.set('period', 'latestdata');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/")
	q := baseURL.Query()
	q.Set("period", "latestdata")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/")
uri.query = URI.encode_www_form({
  "period" => "latestdata"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/oceandrivers.com/1.0/v1.0/getWeatherDisplay/{stationName}/?" . http_build_query([
    "period" => "latestdata"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with ODWeather?

ODWeather is a Data API. Developers commonly use data APIs for:

  • enriching your app with third-party datasets
  • building data pipelines and ETL workflows
  • querying and searching large datasets
  • powering research, analysis, and reporting tools
  • syncing reference data into your own systems

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. ODWeather is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗