You can use the Postgres protocol to query data from hyperfluid.
Hyperfluid exposes a Postgres endpoint that you can use to query data from the data dock.
You can use any SQL request that you want to query the data dock.
Please note that you can only query data, you cannot modify it.
You need to use a token to authenticate your requests. You can see how to obtain your access token here.
To use it, you should use the data dock id as a user and your access token as a password.
You can use the psql command line tool to connect to the data dock.
psql
PGPASSWORD=<your-token> psql -h <your-datadock-endpoint> -p <port> -d <your-datadock-id>
As long as the language supports PG SQL, you should be able to use any PG SQL driver to query the data dock.