I\'ve Lotus Notes database file (.nsf) at some location, let\'s say: http://intranet.mycompany.com/somewhere/data.nsf
Is it possible in any way to read from that locatio
I'll assume that you're accessing the database over HTTP only, because this is how you provided its location. So, for the current and older versions of Domino server, you can access the different database elements using the Domino URL syntax which provide access to design elements in addition to data documents.
And starting with Domino 9, you can also access the data using REST requests using the Domino Access Services (DAS), which provide all the standard CRUD (Create, Read, Update, Delete) commands that you need, i.e. POST, GET, PUT, DELETE, and PATCH. Remember that you need to enable the database and its views to be accessed by DAS before you can run your requests.
The links provided give you all the information you need.