Is there a way to get start and end date of measurements from a station within a network with the fdsn request?

I am wondering if it is possible to find out when the measurement of a specific station in a specific network starts and when the last measurement was done? I am using a fdsn request.

from obspy.clients.fdsn import Client
client = Client("BGR")
client.get_stations(network="HS", station="WBB", level="response")

Best Regards

I found that for the BGR system therese a http request method that returns the start and end date.
https://eida.bgr.de/fdsnws/station/1/query?format=text&level=station&network=HS

It yields:
HS|WBB|49.8422|8.6616|241.0|Darmstadt, Centaur, LE3Dlite|2003-01-10T00:00:00|

Is something similiar possible with obspy?

t = client.get_stations(network = 'HS', filename = 'test.txt', format ='text')
t

I found the solution.

1 Like