The Github API has a clear method for seeing whether a pull request has been closed or not. For example, this pull request, has been closed, and we can determine that using an API call.
However, some pull requests are "closed from a commit", e.g. here. How can one use the Github API to determine whether a pull request is just "closed" or "closed from a commit"?
Your example is actually not of a pull request but rather an issue. You can see information about the closing of an issue through GitHub's Issue Events API.
Example:
Notice the
commit_id
field in the response.