GET /v1/auth-profiles

Authentication

Bearer Token

Query Parameters

project_id string optional query

Responses

200 Auth profile list
application/json
profiles object[]
Array of:
id string
project_id string | null
name string
domain string
cookie_count integer
status string
last_used_at string | null
created_at string
updated_at string
401 Error response
403 Error response
curl -X GET 'https://screenframed.com/v1/auth-profiles' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://screenframed.com/v1/auth-profiles', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://screenframed.com/v1/auth-profiles', headers=headers)print(response.json())
200 Response
{  "profiles": [    {      "id": "<string>",      "project_id": "<string>",      "name": "<string>",      "domain": "<string>",      "cookie_count": 123,      "status": "<string>",      "last_used_at": "<string>",      "created_at": "<string>",      "updated_at": "<string>"    }  ]}