Create APIs
Gorgias
Free
Explore our guides and technical documentation to integrate with Gorgias.
curl --request GET \
--url https://your-domain.gorgias.com/api/account \
--header 'accept: application/json'
import requests
url = "https://your-domain.gorgias.com/api/account"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://your-domain.gorgias.com/api/account', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Podium
Premium
Do you have an in-house system that you want to connect to Podium? Or maybe you have an idea for an app that could make Podium work even better. The public APIs available in our Developer Portal allow you to do just that
curl --request GET \
--url 'https://api.podium.com/v4/locations?searchFields=name&limit=10' \
--header 'accept: application/json'
import requests
url = "https://api.podium.com/v4/locations?searchFields=name&limit=10"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.podium.com/v4/locations?searchFields=name&limit=10', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
LiveRamp
Free
Data collaboration is a uniquely powerful way to build enduring brand and business value. It’s how leading brands, media giants, retail innovators, and service providers unlock incremental revenue, discover and activate new audiences, and expand reach.
curl --request GET \
--url 'https://api.liveramp.com/activation/v2/deliveries?limit=10' \
--header 'accept: application/json'
import requests
url = "https://api.liveramp.com/activation/v2/deliveries?limit=10"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.liveramp.com/activation/v2/deliveries?limit=10', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Render
Premium
Render is a unified cloud to build and run all your apps and websites with free TLS certificates, a global CDN, DDoS protection, private networks, and auto deploys from Git.
curl --request GET \
--url 'https://api.render.com/v1/registrycredentials?limit=20' \
--header 'accept: application/json'
import requests
url = "https://api.render.com/v1/registrycredentials?limit=20"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.render.com/v1/registrycredentials?limit=20', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Blend
Free
Welcome to the Blend developer portal. You'll find comprehensive guides and documentation to help you start working with Blend as quickly as possible, as well as support if you get stuck. You may also visit our public Github repository to download our OpenAPI specs directly. Let's jump right in!
require 'uri'
require 'net/http'
url = URI("https://api.beta.blendlabs.com/home-lending/applications/id/file-export?format=fannie")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["accept"] = 'text/plain; charset=utf-8'
request["blend-api-version"] = '6.0.0'
request["cache-control"] = 'no-cache'
request["Content-Type"] = 'application/json'
response = http.request(request)
puts response.read_body
import requests
url = "https://api.beta.blendlabs.com/home-lending/applications/id/file-export?format=fannie"
headers = {
"accept": "text/plain; charset=utf-8",
"blend-api-version": "6.0.0",
"cache-control": "no-cache",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.text)
const options = {
method: 'GET',
headers: {
accept: 'text/plain; charset=utf-8',
'blend-api-version': '6.0.0',
'cache-control': 'no-cache',
'Content-Type': 'application/json'
}
};
fetch('https://api.beta.blendlabs.com/home-lending/applications/id/file-export?format=fannie', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Samsara
Premium
Lower fuel costs, boost efficiency, track your equipment, and more. All on one platform.
curl --request POST \
--url https://api.samsara.com/addresses \
--header 'accept: application/json' \
--header 'content-type: application/json'
import requests
url = "https://api.samsara.com/addresses"
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)
const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'}
};
fetch('https://api.samsara.com/addresses', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Addepar
Free
Leverage our suite of APIs and resources to develop new solutions and seamlessly integrate Addepar with your existing systems and workflows.
curl --request GET \
--url https://example.addepar.com/api/v1/transactions/views//results \
--header 'Accept: text/csv'
import requests
url = "https://example.addepar.com/api/v1/transactions/views//results"
headers = {"Accept": "text/csv"}
response = requests.request("GET", url, headers=headers)
print(response.text)
const options = {method: 'GET', headers: {Accept: 'text/csv'}};
fetch('https://example.addepar.com/api/v1/transactions/views//results', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));