Skip to main content

API Reference

Projects API

API reference for listing and managing Stora projects.

Projects API#

List Projects#

GET /v1/projectsRequires authentication

Returns all projects in your account.

Parameters#

No parameters required.

Response#

json
{
  "projects": [
    {
      "id": "proj_abc123",
      "name": "Versed",
      "mobilePlatform": "ios",
      "description": "Language learning app with AI-powered flashcards",
      "fullName": "carlton/versed-app",
      "appIconUrl": "https://stora.sh/icons/proj_abc123.png",
      "createdAt": "2026-01-15T10:30:00Z"
    }
  ]
}

Response Fields#

| Name | Type | Required | Description | |------|------|----------|-------------| | id | string | Yes | Unique project identifier. | | name | string | Yes | Display name of the project. | | mobilePlatform | string | Yes | Target platform: 'ios' or 'android'. | | description | string | Yes | Project description. | | fullName | string | Yes | Full repository name (org/repo) if imported from GitHub. | | appIconUrl | string | Yes | URL to the app icon image. | | createdAt | string | Yes | ISO 8601 timestamp of when the project was created. |

Example#

bash
curl -H "Authorization: Bearer sk_stora_..." \
  https://stora.sh/api/v1/projects