Skip to documentation
AppLaunchFlow/ Docs

API reference / Projects

List project screenshots

GET/api/v1/projects/{id}/screenshots

Authorization

Send your API key or MCP OAuth token in the Authorization: Bearer header. Active or trialing Unlimited is required.

Required permission assets:read

Parameters

idpathrequired

string

Request example

Set ALF_API_URL to https://dashboard.applaunchflow.com/api/v1 and ALF_API_KEY to your key. Replace sample IDs with your project’s values.

cURL
curl --request GET \
  --url "$ALF_API_URL/projects/11111111-1111-4111-8111-111111111111/screenshots" \
  --header "Authorization: Bearer $ALF_API_KEY"

This example shows the request structure. Some editor operations require additional query parameters that are not yet described in OpenAPI.

Response

Successful JSON responses wrap the result in data, with a request ID in meta.requestId.

screenshotUrlsdatarequired

string[]

pathsdatarequired

string[]

platformsdatarequired

string[]

deviceTypesdatarequired

string[]

defaultPlatformdatarequired

string

expiresAtdatarequired

string | number

View response schema
{
  "type": "object",
  "required": [
    "data",
    "meta"
  ],
  "properties": {
    "data": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "screenshotUrls": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "paths": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "deviceTypes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "defaultPlatform": {
          "type": "string"
        },
        "expiresAt": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        }
      },
      "required": [
        "screenshotUrls",
        "paths",
        "platforms",
        "deviceTypes",
        "defaultPlatform",
        "expiresAt"
      ],
      "additionalProperties": {}
    },
    "meta": {
      "type": "object",
      "required": [
        "requestId"
      ],
      "properties": {
        "requestId": {
          "type": "string",
          "format": "uuid"
        }
      }
    }
  }
}

Errors & retries

Errors use application/problem+json. Check the stable code and keep requestId when contacting support. Respect Retry-After on 429 responses.

See error handling and idempotency →