how to generate bridgedataoutput api access token

Viewed 42

i register on https://bridgedataoutput.com/ for using bridge data api. as per documents https://bridgedataoutput.com/docs/platform/API/zg-data#Zestimates

require access token. how I get access token ?

after login , I get detail of Client id, Client Secret and Server Token. i try server token but give me authorization error.

I try to do get request on this below API link

https://api.bridgedataoutput.com/api/v2/zestimates_v2/zestimates?access_token=P7cbhWXt2PLOGOHbctzuOJ1qF2mJYSSF7cI1IrUabGdt3u2IGMiFzu5XLCNk&address=%22123%20Main%20Street%22

Response

{"success":false,"status":403,"bundle":{"name":"AuthenticationError","message":"Invalid access_token format"}}

2 Answers

I had the same issue, and Bridge support said to use the Server Token as the access token. It needs to go in the URL, not as a header when I tried it. Here's an example.

https://api.bridgedataoutput.com/api/v2/OData/[DATASET_ID]/[RESOURCE]?access_token=[SERVER_TOKEN]

Related