### Frame.io API Rate Limit Headers Example Source: https://developer.frame.io/api/reference/index This example demonstrates the rate limit headers returned by the Frame.io API for a specific resource path. These headers provide insights into the current request limits and remaining capacity within the defined time window. ```HTTP x-ratelimit-limit → 40 x-ratelimit-remaining → 39 x-ratelimit-window → 60000 ``` -------------------------------- ### Make a Test API Call using cURL Source: https://developer.frame.io/api/reference/index This snippet demonstrates how to make a GET request to the '/v2/me' endpoint using cURL to verify your API token. Ensure you replace '' with your actual developer token. ```Shell curl --request GET \ --url https://api.frame.io/v2/me \ --header 'authorization: Bearer ' ``` -------------------------------- ### Make a Test API Call using Python Requests Source: https://developer.frame.io/api/reference/index This Python code snippet shows how to perform a GET request to the '/v2/me' endpoint using the 'requests' library. It includes setting the authorization header with your developer token. Replace '' with your actual token. ```Python import requests url = "https://api.frame.io/v2/me" headers = { "Authorization": "Bearer " } requests.GET(url,headers=headers) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.