GET /v1/projects

Authentication

Bearer Token

Responses

200 Project list
application/json
projects object[]
Array of:
id string
name string
domain string | null
brand object | null
brand_status string
Enum: none, pending, processing, completed, failed, skipped
brand_error string | null
is_default boolean
created_at string
updated_at string
active_project_id string | null
401 Error response
403 Error response
curl -X GET 'https://screenframed.com/v1/projects' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://screenframed.com/v1/projects', {  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/projects', headers=headers)print(response.json())
200 Response
{  "projects": [    {      "id": "<string>",      "name": "<string>",      "domain": "<string>",      "brand": "<object>",      "brand_status": "none",      "brand_error": "<string>",      "is_default": true,      "created_at": "<string>",      "updated_at": "<string>"    }  ],  "active_project_id": "<string>"}