Groundwater Wells, Aquifers and Registry API
gov · Government
The groundwater wells, aquifers and registry API contains information related to groundwater wells and aquifers as well as a register of qualified well drillers and well pump installers registered to operate in B.C.
Authentication
Sample Requests
return a list of aquifers
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/aquifers/?limit=10&offset=0&search=hello&ordering=example&aquifer_id=1"
import requests
params = {
"limit": "10",
"offset": "0",
"search": "hello",
"ordering": "example",
"aquifer_id": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/aquifers/",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/aquifers/');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('search', 'hello');
url.searchParams.set('ordering', 'example');
url.searchParams.set('aquifer_id', '1');
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/gov.bc.ca/gwells/v1/aquifers/")
q := baseURL.Query()
q.Set("limit", "10")
q.Set("offset", "0")
q.Set("search", "hello")
q.Set("ordering", "example")
q.Set("aquifer_id", "1")
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/gov.bc.ca/gwells/v1/aquifers/")
uri.query = URI.encode_www_form({
"limit" => "10",
"offset" => "0",
"search" => "hello",
"ordering" => "example",
"aquifer_id" => "1"
})
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/gov.bc.ca/gwells/v1/aquifers/?" . http_build_query([
"limit" => "10",
"offset" => "0",
"search" => "hello",
"ordering" => "example",
"aquifer_id" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns a list of all person records
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/drillers/?limit=10&offset=0&search=hello&ordering=example"
import requests
params = {
"limit": "10",
"offset": "0",
"search": "hello",
"ordering": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/drillers/",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/drillers/');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('search', 'hello');
url.searchParams.set('ordering', 'example');
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/gov.bc.ca/gwells/v1/drillers/")
q := baseURL.Query()
q.Set("limit", "10")
q.Set("offset", "0")
q.Set("search", "hello")
q.Set("ordering", "example")
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/gov.bc.ca/gwells/v1/drillers/")
uri.query = URI.encode_www_form({
"limit" => "10",
"offset" => "0",
"search" => "hello",
"ordering" => "example"
})
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/gov.bc.ca/gwells/v1/drillers/?" . http_build_query([
"limit" => "10",
"offset" => "0",
"search" => "hello",
"ordering" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));returns a list of wells
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/wells/?limit=10&offset=0"
import requests
params = {
"limit": "10",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/wells/",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/gov.bc.ca/gwells/v1/wells/');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
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/gov.bc.ca/gwells/v1/wells/")
q := baseURL.Query()
q.Set("limit", "10")
q.Set("offset", "0")
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/gov.bc.ca/gwells/v1/wells/")
uri.query = URI.encode_www_form({
"limit" => "10",
"offset" => "0"
})
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/gov.bc.ca/gwells/v1/wells/?" . http_build_query([
"limit" => "10",
"offset" => "0"
]);
$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
- See official documentation for authentication and setup.
What can you build with Groundwater Wells, Aquifers and Registry API?
Groundwater Wells, Aquifers and Registry API is a Government API. Developers commonly use government APIs for:
- surfacing public datasets in citizen-facing apps
- building transparency and civic engagement tools
- accessing legislation, court records, and official data
- powering research and journalism tools
- creating compliance and regulatory monitoring dashboards
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Groundwater Wells, Aquifers and Registry API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?