Find an API

Search public APIs with auth details & Postman guides

← All APIs

geodesystems.com:443

geodesystems · Company

Company No Auth Free & Open API

Search for data in lots of places - manage your documents, photos and critical business knowledge - communicate and coordinate with blogs, interactive wikis, and data integration dashboards.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET API for Extract sheets

API to call: Extract sheets

https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/entry/show?arg1=example&output=media_tabular_extractsheet&entryid=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/entry/show?arg1=example&output=media_tabular_extractsheet&entryid=example"
import requests
params = {
    "arg1": "example",
    "output": "media_tabular_extractsheet",
    "entryid": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/entry/show",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/entry/show');
url.searchParams.set('arg1', 'example');
url.searchParams.set('output', 'media_tabular_extractsheet');
url.searchParams.set('entryid', '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/geodesystems.com/1.0.0/repository/entry/show")
	q := baseURL.Query()
	q.Set("arg1", "example")
	q.Set("output", "media_tabular_extractsheet")
	q.Set("entryid", "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/geodesystems.com/1.0.0/repository/entry/show")
uri.query = URI.encode_www_form({
  "arg1" => "example",
  "output" => "media_tabular_extractsheet",
  "entryid" => "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/geodesystems.com/1.0.0/repository/entry/show?" . http_build_query([
    "arg1" => "example",
    "output" => "media_tabular_extractsheet",
    "entryid" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Search API for '2017 Boulder Election Expenditures' entry type

API to search for entries of type 2017 Boulder Election Expenditures

https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures?max=1&name=test&skip=1&text=example&group=example&todate=example&fromdate=example&filesuffix=example&description=test&maxlatitude=1&minlatitude=1&maxlongitude=1&minlongitude=1&changedate.to=example&createdate.to=example&changedate.from=example&createdate.from=example&search.db_2017_boulder_election_expenditures.zip=example&search.db_2017_boulder_election_expenditures.city=example&search.db_2017_boulder_election_expenditures.name=example&search.db_2017_boulder_election_expenditures.state=example&search.db_2017_boulder_election_expenditures.street=example&search.db_2017_boulder_election_expenditures.purpose=example&search.db_2017_boulder_election_expenditures.committee=example&search.db_2017_boulder_election_expenditures.expenditure=1&search.db_2017_boulder_election_expenditures.transaction_date=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures?max=1&name=test&skip=1&text=example&group=example&todate=example&fromdate=example&filesuffix=example&description=test&maxlatitude=1&minlatitude=1&maxlongitude=1&minlongitude=1&changedate.to=example&createdate.to=example&changedate.from=example&createdate.from=example&search.db_2017_boulder_election_expenditures.zip=example&search.db_2017_boulder_election_expenditures.city=example&search.db_2017_boulder_election_expenditures.name=example&search.db_2017_boulder_election_expenditures.state=example&search.db_2017_boulder_election_expenditures.street=example&search.db_2017_boulder_election_expenditures.purpose=example&search.db_2017_boulder_election_expenditures.committee=example&search.db_2017_boulder_election_expenditures.expenditure=1&search.db_2017_boulder_election_expenditures.transaction_date=example"
import requests
params = {
    "max": "1",
    "name": "test",
    "skip": "1",
    "text": "example",
    "group": "example",
    "todate": "example",
    "fromdate": "example",
    "filesuffix": "example",
    "description": "test",
    "maxlatitude": "1",
    "minlatitude": "1",
    "maxlongitude": "1",
    "minlongitude": "1",
    "changedate.to": "example",
    "createdate.to": "example",
    "changedate.from": "example",
    "createdate.from": "example",
    "search.db_2017_boulder_election_expenditures.zip": "example",
    "search.db_2017_boulder_election_expenditures.city": "example",
    "search.db_2017_boulder_election_expenditures.name": "example",
    "search.db_2017_boulder_election_expenditures.state": "example",
    "search.db_2017_boulder_election_expenditures.street": "example",
    "search.db_2017_boulder_election_expenditures.purpose": "example",
    "search.db_2017_boulder_election_expenditures.committee": "example",
    "search.db_2017_boulder_election_expenditures.expenditure": "1",
    "search.db_2017_boulder_election_expenditures.transaction_date": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures');
url.searchParams.set('max', '1');
url.searchParams.set('name', 'test');
url.searchParams.set('skip', '1');
url.searchParams.set('text', 'example');
url.searchParams.set('group', 'example');
url.searchParams.set('todate', 'example');
url.searchParams.set('fromdate', 'example');
url.searchParams.set('filesuffix', 'example');
url.searchParams.set('description', 'test');
url.searchParams.set('maxlatitude', '1');
url.searchParams.set('minlatitude', '1');
url.searchParams.set('maxlongitude', '1');
url.searchParams.set('minlongitude', '1');
url.searchParams.set('changedate.to', 'example');
url.searchParams.set('createdate.to', 'example');
url.searchParams.set('changedate.from', 'example');
url.searchParams.set('createdate.from', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.zip', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.city', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.name', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.state', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.street', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.purpose', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.committee', 'example');
url.searchParams.set('search.db_2017_boulder_election_expenditures.expenditure', '1');
url.searchParams.set('search.db_2017_boulder_election_expenditures.transaction_date', '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/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures")
	q := baseURL.Query()
	q.Set("max", "1")
	q.Set("name", "test")
	q.Set("skip", "1")
	q.Set("text", "example")
	q.Set("group", "example")
	q.Set("todate", "example")
	q.Set("fromdate", "example")
	q.Set("filesuffix", "example")
	q.Set("description", "test")
	q.Set("maxlatitude", "1")
	q.Set("minlatitude", "1")
	q.Set("maxlongitude", "1")
	q.Set("minlongitude", "1")
	q.Set("changedate.to", "example")
	q.Set("createdate.to", "example")
	q.Set("changedate.from", "example")
	q.Set("createdate.from", "example")
	q.Set("search.db_2017_boulder_election_expenditures.zip", "example")
	q.Set("search.db_2017_boulder_election_expenditures.city", "example")
	q.Set("search.db_2017_boulder_election_expenditures.name", "example")
	q.Set("search.db_2017_boulder_election_expenditures.state", "example")
	q.Set("search.db_2017_boulder_election_expenditures.street", "example")
	q.Set("search.db_2017_boulder_election_expenditures.purpose", "example")
	q.Set("search.db_2017_boulder_election_expenditures.committee", "example")
	q.Set("search.db_2017_boulder_election_expenditures.expenditure", "1")
	q.Set("search.db_2017_boulder_election_expenditures.transaction_date", "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/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures")
uri.query = URI.encode_www_form({
  "max" => "1",
  "name" => "test",
  "skip" => "1",
  "text" => "example",
  "group" => "example",
  "todate" => "example",
  "fromdate" => "example",
  "filesuffix" => "example",
  "description" => "test",
  "maxlatitude" => "1",
  "minlatitude" => "1",
  "maxlongitude" => "1",
  "minlongitude" => "1",
  "changedate.to" => "example",
  "createdate.to" => "example",
  "changedate.from" => "example",
  "createdate.from" => "example",
  "search.db_2017_boulder_election_expenditures.zip" => "example",
  "search.db_2017_boulder_election_expenditures.city" => "example",
  "search.db_2017_boulder_election_expenditures.name" => "example",
  "search.db_2017_boulder_election_expenditures.state" => "example",
  "search.db_2017_boulder_election_expenditures.street" => "example",
  "search.db_2017_boulder_election_expenditures.purpose" => "example",
  "search.db_2017_boulder_election_expenditures.committee" => "example",
  "search.db_2017_boulder_election_expenditures.expenditure" => "1",
  "search.db_2017_boulder_election_expenditures.transaction_date" => "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/geodesystems.com/1.0.0/repository/search/type/2017_boulder_election_expenditures?" . http_build_query([
    "max" => "1",
    "name" => "test",
    "skip" => "1",
    "text" => "example",
    "group" => "example",
    "todate" => "example",
    "fromdate" => "example",
    "filesuffix" => "example",
    "description" => "test",
    "maxlatitude" => "1",
    "minlatitude" => "1",
    "maxlongitude" => "1",
    "minlongitude" => "1",
    "changedate.to" => "example",
    "createdate.to" => "example",
    "changedate.from" => "example",
    "createdate.from" => "example",
    "search.db_2017_boulder_election_expenditures.zip" => "example",
    "search.db_2017_boulder_election_expenditures.city" => "example",
    "search.db_2017_boulder_election_expenditures.name" => "example",
    "search.db_2017_boulder_election_expenditures.state" => "example",
    "search.db_2017_boulder_election_expenditures.street" => "example",
    "search.db_2017_boulder_election_expenditures.purpose" => "example",
    "search.db_2017_boulder_election_expenditures.committee" => "example",
    "search.db_2017_boulder_election_expenditures.expenditure" => "1",
    "search.db_2017_boulder_election_expenditures.transaction_date" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Search API for 'Any file type' entry type

API to search for entries of type Any file type

https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/any?max=1&name=test&skip=1&text=example&group=example&todate=example&fromdate=example&filesuffix=example&description=test&maxlatitude=1&minlatitude=1&maxlongitude=1&minlongitude=1&changedate.to=example&createdate.to=example&changedate.from=example&createdate.from=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/any?max=1&name=test&skip=1&text=example&group=example&todate=example&fromdate=example&filesuffix=example&description=test&maxlatitude=1&minlatitude=1&maxlongitude=1&minlongitude=1&changedate.to=example&createdate.to=example&changedate.from=example&createdate.from=example"
import requests
params = {
    "max": "1",
    "name": "test",
    "skip": "1",
    "text": "example",
    "group": "example",
    "todate": "example",
    "fromdate": "example",
    "filesuffix": "example",
    "description": "test",
    "maxlatitude": "1",
    "minlatitude": "1",
    "maxlongitude": "1",
    "minlongitude": "1",
    "changedate.to": "example",
    "createdate.to": "example",
    "changedate.from": "example",
    "createdate.from": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/any",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/geodesystems.com/1.0.0/repository/search/type/any');
url.searchParams.set('max', '1');
url.searchParams.set('name', 'test');
url.searchParams.set('skip', '1');
url.searchParams.set('text', 'example');
url.searchParams.set('group', 'example');
url.searchParams.set('todate', 'example');
url.searchParams.set('fromdate', 'example');
url.searchParams.set('filesuffix', 'example');
url.searchParams.set('description', 'test');
url.searchParams.set('maxlatitude', '1');
url.searchParams.set('minlatitude', '1');
url.searchParams.set('maxlongitude', '1');
url.searchParams.set('minlongitude', '1');
url.searchParams.set('changedate.to', 'example');
url.searchParams.set('createdate.to', 'example');
url.searchParams.set('changedate.from', 'example');
url.searchParams.set('createdate.from', '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/geodesystems.com/1.0.0/repository/search/type/any")
	q := baseURL.Query()
	q.Set("max", "1")
	q.Set("name", "test")
	q.Set("skip", "1")
	q.Set("text", "example")
	q.Set("group", "example")
	q.Set("todate", "example")
	q.Set("fromdate", "example")
	q.Set("filesuffix", "example")
	q.Set("description", "test")
	q.Set("maxlatitude", "1")
	q.Set("minlatitude", "1")
	q.Set("maxlongitude", "1")
	q.Set("minlongitude", "1")
	q.Set("changedate.to", "example")
	q.Set("createdate.to", "example")
	q.Set("changedate.from", "example")
	q.Set("createdate.from", "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/geodesystems.com/1.0.0/repository/search/type/any")
uri.query = URI.encode_www_form({
  "max" => "1",
  "name" => "test",
  "skip" => "1",
  "text" => "example",
  "group" => "example",
  "todate" => "example",
  "fromdate" => "example",
  "filesuffix" => "example",
  "description" => "test",
  "maxlatitude" => "1",
  "minlatitude" => "1",
  "maxlongitude" => "1",
  "minlongitude" => "1",
  "changedate.to" => "example",
  "createdate.to" => "example",
  "changedate.from" => "example",
  "createdate.from" => "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/geodesystems.com/1.0.0/repository/search/type/any?" . http_build_query([
    "max" => "1",
    "name" => "test",
    "skip" => "1",
    "text" => "example",
    "group" => "example",
    "todate" => "example",
    "fromdate" => "example",
    "filesuffix" => "example",
    "description" => "test",
    "maxlatitude" => "1",
    "minlatitude" => "1",
    "maxlongitude" => "1",
    "minlongitude" => "1",
    "changedate.to" => "example",
    "createdate.to" => "example",
    "changedate.from" => "example",
    "createdate.from" => "example"
]);
$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 geodesystems.com:443?

geodesystems.com:443 is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

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

New to APIs? Read our beginner's guide

Open documentation ↗