Landlords FSO API Documentation
Overview
Things that the developers should know about
Authentication
What is the preferred way of using the API?
Error Codes
What errors and status codes can a user expect?
Rate limit
Is there a limit to the number of requests an user can send?
GEToverviewProperty
https://landlordsfso.co.uk/api/properties/overviewProperty/[key]/[format]/[ID]
Get the property overview
import http.client
conn = http.client.HTTPConnection("landlordsfso,co,uk")
headers = {
'Cache-Control': "no-cache",
'Postman-Token': "be8c6ed0-f3d3-46f1-aa82-72b6e54e0baf"
}
conn.request("GET", "api,properties,overviewProperty,fsoapp_e5f9ad0adc279,json,11", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))