Hi All,

I am new to Redash, I created a new dashboard for myself but I need to pull it (or the query results) into a different app.
sadly, I cannot just make the dashboard public so I am thinking of using Redash API.
I am not sure where to start with this, can someone point me to good resources for using Redash API and maybe do a GET request to pull the dashboard or query results I care about.

Thanks

Welcome to the forum! The basic API documentation is here.

The /dashboards endpoint will not deliver query results directly. Instead, it will deliver you query ids. You can use these to fetch the latest_query_data_id from /queries. Then you’ll request each query result from the /query_results API endpoint.