Understanding API docs

I am reading the following API documentation: https://iextrading.com/developer/docs/

They say that " All endpoints are prefixed with: https://api.iextrading.com/1.0
To pass parameters: ?symbols=fb

So if I understand correctly my final GET url should be:
https://api.iextrading.com/1.0?symbols=fb

If I use that in POSTMAN it returns “Not Found”

Am I understanding the documentation correctly?

I think you are just missing the endpoint.

E.g for the tops endpoint

https://api.iextrading.com/1.0/tops?symbols=fb

Here is the market endpoint

https://api.iextrading.com/1.0/market

1 Like