### Reflect API Authentication Example Source: https://reflect.academy/api/index This snippet demonstrates how to authenticate with the Reflect API using an OAuth 2.0 access token. The access token should be included in the 'Authorization' header as a Bearer token. ```APIDOC ## GET /api/graphs ### Description This endpoint is an example of how to interact with the Reflect API. It requires authentication via an OAuth 2.0 Bearer token. ### Method GET ### Endpoint /api/graphs ### Parameters #### Query Parameters None #### Request Body None ### Request Example ```curl curl 'https://reflect.app/api/graphs' \ -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' ``` ### Response #### Success Response (200) - **links** (array) - A list of bookmarked links. #### Response Example ```json { "links": [ { "url": "https://example.com", "title": "Example Website" } ] } ``` ``` -------------------------------- ### Making API Requests with Curl Source: https://reflect.academy/api/index This snippet demonstrates how to make a GET request to the Reflect API's graphs endpoint using curl. It requires an authorization header with a Bearer token. Ensure you replace 'YOUR_ACCESS_TOKEN' with your actual access token. ```shell curl 'https://reflect.app/api/graphs' \ -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.