Institution Assets API
Endpoint
GET https://app.alphageo.ai/api/public/v1/assetsParameters
Parameters
Required
Type
Description
Example requests
cURL
$ curl --location 'https://app.alphageo.ai/api/public/v1/assets/?page=1&page_size=25' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'Python
import requests
url = "https://app.alphageo.ai/api/public/v1/assets/?page=1&page_size=25"
payload = {}
headers = {
'Authorization': 'dse3X8de878c37b2fd6835c52390303fk15fc3'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
Example response
Last updated
Was this helpful?