Skip to main content
GET
/
api
/
v1
/
datasources
List Datasources
curl --request GET \
  --url https://data-api.sovfixer.com/api/v1/datasources \
  --header 'Authorization: <api-key>'
import requests

url = "https://data-api.sovfixer.com/api/v1/datasources"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://data-api.sovfixer.com/api/v1/datasources', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://data-api.sovfixer.com/api/v1/datasources",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

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

func main() {

url := "https://data-api.sovfixer.com/api/v1/datasources"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://data-api.sovfixer.com/api/v1/datasources")
.header("Authorization", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://data-api.sovfixer.com/api/v1/datasources")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "configs": {
    "PG": {
      "source_name": "Ping Geocoding",
      "source_code": "PG",
      "required_attrs": [
        "address"
      ],
      "optional_attrs": [
        "const__desc_ping",
        "const__bldg_area",
        "const__num_buildings"
      ],
      "requires_credentials": false,
      "non_supported_input_values": null,
      "supported_countries": null,
      "supported_us_states": null,
      "excluded_us_states": null,
      "geocode_confidence_required": null,
      "geocode_precision_required": null,
      "output_fields": {
        "latitude": {
          "type": "float | None",
          "metadata": {
            "description": "Latitude of the location."
          }
        },
        "longitude": {
          "type": "float | None",
          "metadata": {
            "description": "Longitude of the location."
          }
        },
        "formatted_address": {
          "type": "str | None",
          "metadata": {
            "description": "Human-readable full address (e.g., '123 Main St, Miami, FL 33133')."
          }
        },
        "...": "truncated — see every field described on the Data Integrations page"
      },
      "base_output_fields": {
        "...": "truncated — common fields shared across all datasources"
      }
    }
  }
}
{
"message": "<string>"
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Response

configs
object
required

Object keyed by source code (e.g. 'PG', 'PH'). Each value is the datasource's configuration.