{"meta":{"title":"Git 블롭에 대한 REST API 엔드포인트","intro":"각 파일의 콘텐츠를 리포지토리에 저장하는 데 사용되는 개체 형식인 Git BLOB(Binary Large Object)와 상호 작용하려면 REST API를 사용하십시오.","product":"REST API","breadcrumbs":[{"href":"/ko/enterprise-cloud@latest/rest","title":"REST API"},{"href":"/ko/enterprise-cloud@latest/rest/git","title":"Git 데이터베이스"},{"href":"/ko/enterprise-cloud@latest/rest/git/blobs","title":"블롭들"}],"documentType":"article"},"body":"# Git 블롭에 대한 REST API 엔드포인트\n\n각 파일의 콘텐츠를 리포지토리에 저장하는 데 사용되는 개체 형식인 Git BLOB(Binary Large Object)와 상호 작용하려면 REST API를 사용하십시오.\n\n## Git의 Blob에 대한 정보\n\nGit BLOB(Binary Large Object)은 각 파일의 콘텐츠를 리포지토리에 저장하는 데 사용되는 개체 형식입니다. 파일의 SHA-1 해시는 계산되어 BLOB 개체에 저장됩니다. 이러한 엔드포인트를 사용하면 [](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects)의 Git 데이터베이스에서 GitHub를 읽고 쓸 수 있습니다. Blob은 사용자 지정 미디어 형식을 활용합니다. API에서 미디어 형식을 사용하는 방법에 대한 자세한 정보는 [REST API 시작](/ko/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)을(를) 참조하세요.\n\n> \\[!NOTE]\n> Most endpoints use `Authorization: Bearer <YOUR-TOKEN>` and `Accept: application/vnd.github+json` headers, plus `X-GitHub-Api-Version: 2022-11-28`. Curl examples below omit these standard headers for brevity.\n\n## Create a blob\n\n```\nPOST /repos/{owner}/{repo}/git/blobs\n```\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n#### Body parameters\n\n* **`content`** (string) (required)\n  The new blob's content.\n\n* **`encoding`** (string)\n  The encoding used for content. Currently, \"utf-8\" and \"base64\" are supported.\n  Default: `utf-8`\n\n### HTTP response status codes\n\n* **201** - Created\n\n* **403** - Forbidden\n\n* **404** - Resource not found\n\n* **409** - Conflict\n\n* **422** - Validation failed\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X POST \\\n  https://api.github.com/repos/OWNER/REPO/git/blobs \\\n  -d '{\n  \"content\": \"Content of the blob\",\n  \"encoding\": \"utf-8\"\n}'\n```\n\n**Response schema (Status: 201):**\n\n* `url`: required, string\n* `sha`: required, string\n\n## Get a blob\n\n```\nGET /repos/{owner}/{repo}/git/blobs/{file_sha}\n```\n\nThe content in the response will always be Base64 encoded.\nThis endpoint supports the following custom media types. For more information, see \"Media types.\"\n\napplication/vnd.github.raw+json: Returns the raw blob data.\napplication/vnd.github+json: Returns a JSON representation of the blob with content as a base64 encoded string. This is the default if no media type is specified.\n\nNote This endpoint supports blobs up to 100 megabytes in size.\n\n### Parameters\n\n#### Headers\n\n* **`accept`** (string)\n  Setting to `application/vnd.github+json` is recommended.\n\n#### Path and query parameters\n\n* **`owner`** (string) (required)\n  The account owner of the repository. The name is not case sensitive.\n\n* **`repo`** (string) (required)\n  The name of the repository without the .git extension. The name is not case sensitive.\n\n* **`file_sha`** (string) (required)\n\n### HTTP response status codes\n\n* **200** - OK\n\n* **403** - Forbidden\n\n* **404** - Resource not found\n\n* **409** - Conflict\n\n* **422** - Validation failed, or the endpoint has been spammed.\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  https://api.github.com/repos/OWNER/REPO/git/blobs/FILE_SHA\n```\n\n**Response schema (Status: 200):**\n\n* `content`: required, string\n* `encoding`: required, string\n* `url`: required, string, format: uri\n* `sha`: required, string\n* `size`: required, integer or null\n* `node_id`: required, string\n* `highlighted_content`: string"}