Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. import requests
  2.  
  3. headers = {
  4. 'accept': 'application/json',
  5. 'Content-Type': 'application/json',
  6. 'Authorization': 'Bearer 9064dc72d183e258027627cc21a5d953',
  7. }
  8.  
  9. data = '{ "listingType":"Rent", "propertyTypes":[ "apartmentUnitFlat" ], "minBedrooms":1, "maxBathrooms": 1, "minBathrooms":1, "maxBathrooms": 1, "minCarspaces":0, "maxCarspaces": 1, "minPrice": 400, "maxPrice": 600, "locations":[ { "state":"NSW", "region":"", "area":"", "suburb":"Mascot", "postCode":"", "includeSurroundingSuburbs":false } ]}'
  10.  
  11. response = requests.post('https://api.domain.com.au/v1/listings/residential/_search', headers=headers, data=data)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement