# Get git blame Endpoint: GET /code/api/v1/repos/{repo_identifier}/blame/{path} Version: 1.0 Security: x-api-key ## Query parameters: - `accountIdentifier` (string, required) Account Identifier for the Entity. - `orgIdentifier` (string) Organization Identifier for the Entity. - `projectIdentifier` (string) Project Identifier for the Entity. - `git_ref` (string) The git reference (branch / tag / commitID) that will be used to retrieve the data. If no value is provided the default branch of the repository is used. - `line_from` (integer) Line number from which the file data is considered - `line_to` (integer) Line number to which the file data is considered ## Path parameters: - `repo_identifier` (string, required) - `path` (string, required) ## Response 200 fields (application/json): - `commit` (object,null) - `commit.author` (object) - `commit.author.identity` (object,null) - `commit.author.identity.email` (string) - `commit.author.identity.name` (string) - `commit.author.when` (string) - `commit.committer` (object) - `commit.file_stats` (array) - `commit.message` (string) - `commit.parent_shas` (array) - `commit.sha` (string) Git object hash - `commit.title` (string) - `lines` (array,null) - `previous` (object) - `previous.commit_sha` (string) Git object hash - `previous.file_name` (string) ## Response 401 fields (application/json): - `message` (string) - `values` (object) ## Response 403 fields (application/json): - `message` (string) - `values` (object) ## Response 404 fields (application/json): - `message` (string) - `values` (object) ## Response 500 fields (application/json): - `message` (string) - `values` (object)