--- title: "Session Download Metadata API" slug: "session-download-metadata-api" description: "Retrieve session metadata and download URLs using a 6-digit code with our API. Ensure proper redirects based on userAgent for seamless access." updated: 2020-05-29T21:54:34Z published: 2020-05-29T21:54:34Z canonical: "docs.screenmeet.com/session-download-metadata-api" --- > ## Documentation Index > Fetch the complete documentation index at: https://docs.screenmeet.com/llms.txt > Use this file to discover all available pages before exploring further. # Session Download Metadata API ## **API Specification:** The {PIN} part of the URL should be substituted with the 6-digit numeric code entered by the user **For production env:** GET*https://api-v3.screenmeet.com/v3/support/{PIN}/meta* **Sample responses:** Invalid:HTTP STATUS CODE: 404Sample Response Body: { "code": 404,"refcode": 101404,"description": "Session not found 123456"} Valid:HTTP STATUS CODE: 200Sample Response Body: { "id": "fBjiPO","pin": 104066,"userDescription": "John Smith","status": "new","settings": {"recording": true},"expiresAt": "[2019-03-15](http://airmail.calendar/2019-03-15%2012:00:00%20PDT)T22:53:36.000Z","OrganizationId": 26,"client_info": {"win_download_url": "[https://downloads.screenmeet.com/windows/prod/v3/support?session=](https://test-download.screenmeet.com/windows/qa/v3/support?session=)","mac_download_url": "[https://downloads.screenmeet.com/mac/prod/v3/support?session=](https://downloads.screenmeet.com/mac/qa/v3/support?session=)","ios_itunes_url": "itms-apps://[itunes.apple.com/us/app/screenmeet-for-support/id1243134245?mt\\=8](http://itunes.apple.com/us/app/screenmeet-for-support/id1243134245?mt//=8)","android_package_id": "com.projector.screenmeet.support"}} **Constructing download URL/redirect:** Parse out the value **body.client_info.win_download_url** value from the body. Append the session pin to the URL. ## Implementation Guidelines Once you retrieve the download metadata for the desired session, you will need to detect the userAgent of the browser, then redirect them to the appropriate download for their system type.