Skip to main content
GET
/
v1
/
apps
/
{appId}
/
git
Get git connection status for an app
curl --request GET \
  --url https://api.agentmark.co/v1/apps/{appId}/git \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Agentmark-App-Id: <api-key>'
{
  "data": {
    "branch": "<string>",
    "connected": true,
    "installation_id": 123,
    "repository": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.agentmark.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Agentmark-App-Id
string
header
required

Application ID for tenant scoping

Authorization
string
header
required

API key (sk_agentmark_*)

Path Parameters

appId
string<uuid>
required

Response

Git connection status (may report connected: false if no connection exists yet).

data
object
required