Gets multiple blobs of a repository.
GET
/repos/{owner}/{repo}/git/blobs
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” owner
required
string
Owner of the repo
repo
required
string
Name of the repo
Query Parameters
Section titled “ Query Parameters ” shas
required
string
A comma separated list of blob-sha (mind the overall URL-length limit of ~2,083 chars)
Responses
Section titled “ Responses ”GitBlobList
Media type application/json
Array<object>
GitBlob represents a git blob
object
content
string
encoding
string
sha
string
size
integer format: int64
url
string
Example generated
[ { "content": "example", "encoding": "example", "sha": "example", "size": 1, "url": "example" }]APIError is error format response
Media type application/json
APIError is an api error with a message
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}