Skip to main content
POST
/
api
/
v2
/
parsing-status
Get Parsing Status By Repo
curl --request POST \
  --url https://api.example.com/api/v2/parsing-status \
  --header 'Content-Type: application/json' \
  --data '
{
  "repo_name": "<string>",
  "commit_id": "<string>",
  "branch_name": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

x-api-key
string | null
x-user-id
string | null

Body

application/json
repo_name
string
required

Repository name to check status for

commit_id
string | null

Commit ID to check status for

branch_name
string | null

Branch name (used if commit_id is not provided)

Response

Successful Response