Hi @sayyed007amir ,
Actually, when you use CDS Web API to fetach data from CDS Entity, the standard URL Address looks like below:
[Organization URI]/api/data/v9.1/entityname?$select=name,revenue
The URL you will use will be composed with these parts: Protocol + Environment Name + Region + Base URL + Web API path + Version + Resource.
More details about the Web URL structure, please refer to the following artilce:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/compose-http-requests-handle-errors#web-api-url-and-versions
If you want to get the Organization URI for your specific Environment, please consider go to Power Platform Admin Center, then switch Environments tab, then find your specific Environment, click it. Then you would find the Organization URL as below:

If I want to fetch Account Entity data from my current Environment using Web API, the HTTP request URL should be as below:
https://org4xxxxxxx.crm5.dynamics.com/api/data/v9.1/accounts
You could also append some query options to above url:
https://org4xxxxxxx.crm5.dynamics.com/api/data/v9.1/accounts?$select=name&$top=3
More details about querying data from CDS Entity using Web API, please check the following article:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/query-data-web-api
Best regards,