Getting started with the REST API - GitHub Docs (original) (raw)
Learn how to use the GitHub REST API.
Introduction
This article describes how to use the GitHub REST API with GitHub CLI, curl
, or JavaScript. For a quickstart guide, see Quickstart for GitHub REST API.
About requests to the REST API
This section describes the elements that make up an API request:
Every request to the REST API includes an HTTP method and a path. Depending on the REST API endpoint, you might also need to specify request headers, authentication information, query parameters, or body parameters.
The REST API reference documentation describes the HTTP method, path, and parameters for every endpoint. It also displays example requests and responses for each endpoint. For more information, see the REST reference documentation.
HTTP method
The HTTP method of an endpoint defines the type of action it performs on a given resource. Some common HTTP methods are GET
, POST
, DELETE
, and PATCH
. The REST API reference documentation provides the HTTP method for every endpoint.
For example, the HTTP method for the "List repository issues" endpoint is GET
."
Where possible, the GitHub REST API strives to use an appropriate HTTP method for each action.
GET
: Used for retrieving resources.POST
: Used for creating resources.PATCH
: Used for updating properties of resources.PUT
: Used for replacing resources or collections of resources.DELETE
: Used for deleting resources.
Path
Each endpoint has a path. The REST API reference documentation gives the path for every endpoint. For example, the path for the "List repository issues" endpoint is /repos/{owner}/{repo}/issues
.
The curly brackets {}
in a path denote path parameters that you need to specify. Path parameters modify the endpoint path and are required in your request. For example, the path parameters for the "List repository issues" endpoint are {owner}
and {repo}
. To use this path in your API request, replace {repo}
with the name of the repository where you would like to request a list of issues, and replace {owner}
with the name of the account that owns the repository.
Headers provide extra information about the request and the desired response. Following are some examples of headers that you can use in your requests to the GitHub REST API. For an example of a request that uses headers, see Making a request.
Accept
Most GitHub REST API endpoints specify that you should pass an Accept
header with a value of application/vnd.github+json
. The value of the Accept
header is a media type. For more information about media types, see Media types.
X-GitHub-Api-Version
You should use this header to specify a version of the REST API to use for your request. For more information, see API Versions.
User-Agent
All API requests must include a valid User-Agent
header. The User-Agent
header identifies the user or application that is making the request.
By default, GitHub CLI sends a valid User-Agent
header. However, GitHub recommends using your GitHub username, or the name of your application, for the User-Agent
header value. This allows GitHub to contact you if there are problems.
By default, curl
sends a valid User-Agent
header. However GitHub recommends using your GitHub username, or the name of your application, for the User-Agent
header value. This allows GitHub to contact you if there are problems.
If you use the Octokit.js SDK, the SDK will send a valid User-Agent
header for you. However, GitHub recommends using your GitHub username, or the name of your application, for the User-Agent
header value. This allows GitHub to contact you if there are problems.
The following is an example User-Agent
for an app named Awesome-Octocat-App
:
User-Agent: Awesome-Octocat-App
Requests with no User-Agent
header will be rejected. If you provide an invalid User-Agent
header, you will receive a 403 Forbidden
response.
Media types
You can specify one or more media types by adding them to the Accept
header of your request. For more information about the Accept
header, see Accept.
Media types specify the format of the data you want to consume from the API. Media types are specific to resources, allowing them to change independently and support formats that other resources don't. The documentation for each GitHub REST API endpoint will describe the media types that it supports. For more information, see the GitHub REST API documentation.
The most common media types supported by the GitHub REST API are application/vnd.github+json
and application/json
.
There are custom media types that you can use with some endpoints. For example, the REST API to manage commits and pull requests support the media types diff
, patch
, and sha
. The media types full
, raw
, text
, or html
are used by some other endpoints.
All custom media types for GitHub look like this: application/vnd.github.PARAM+json
, where PARAM
is the name of the media type. For example, to specify the raw
media type, you would use application/vnd.github.raw+json
.
For an example of a request that uses media types, see Making a request.
Authentication
Many endpoints require authentication or return additional information if you are authenticated. Additionally, you can make more requests per hour when you are authenticated.
Although some REST API endpoints are accessible without authentication, GitHub CLI requires you to authenticate before you can use the api
subcommand to make an API request. Use the auth login
subcommand to authenticate to GitHub. For more information, see Making a request.
Parameters
Many API methods require or allow you to send additional information in parameters in your request. There are a few different types of parameters: Path parameters, body parameters, and query parameters.
Path parameters
Path parameters modify the endpoint path. These parameters are required in your request. For more information, see Path.
Body parameters
Body parameters allow you to pass additional data to the API. These parameters can be optional or required, depending on the endpoint. For example, a body parameter may allow you to specify an issue title when creating a new issue, or specify certain settings when enabling or disabling a feature. The documentation for each GitHub REST API endpoint will describe the body parameters that it supports. For more information, see the GitHub REST API documentation.
For example, the "Create an issue" endpoint requires that you specify a title for the new issue in your request. It also allows you to optionally specify other information, such as text to put in the issue body, users to assign to the new issue, or labels to apply to the new issue. For an example of a request that uses body parameters, see Making a request.
You must authenticate your request to pass body parameters. For more information, see Authenticating.
Query parameters
Query parameters allow you to control what data is returned for a request. These parameters are usually optional. The documentation for each GitHub REST API endpoint will describe any query parameters that it supports. For more information, see the GitHub REST API documentation.
For example, the "List public events" endpoint returns thirty issues by default. You can use the per_page
query parameter to return two issues instead of 30. You can use the page
query parameter to fetch only the first page of results. For an example of a request that uses query parameters, see Making a request.
Making a request
Using the response
After you make a request, the API will return the response status code, response headers, and potentially a response body.
About the response code and headers
Every request will return an HTTP status code that indicates the success of the response. For more information about response codes, see the MDN HTTP response status code documentation.
Additionally, the response will include headers that give more details about the response. Headers that start with X-
or x-
are custom to GitHub. For example, the x-ratelimit-remaining
and x-ratelimit-reset
headers tell you how many requests you can make in a time period.
About the response body
Many endpoints will return a response body. Unless otherwise specified, the response body is in JSON format. Blank fields are included as null
instead of being omitted. All timestamps return in UTC time, ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ
.
Unlike the GraphQL API where you specify what information you want, the REST API typically returns more information than you need. If desired, you can parse the response to pull out specific pieces of information.
Detailed versus summary representations
A response can include all attributes for a resource or only a subset of attributes, depending on whether you fetch an individual resource or a list of resources.
- When you fetch an individual resource, like a specific repository, the response will typically include all attributes for that resource. This is the "detailed" representation of the resource.
- When you fetch a list of resources, like a list of multiple repositories, the response will only include a subset of the attributes for each resource. This is the "summary" representation of the resource.
Note that authorization sometimes influences the amount of detail included in a representation.
The reason for this is because some attributes are computationally expensive for the API to provide, so GitHub excludes those attributes from the summary representation. To obtain those attributes, you can fetch the detailed representation.
The documentation provides an example response for each API method. The example response illustrates all attributes that are returned by that method.
Hypermedia
All resources may have one or more *_url
properties linking to other resources. These are meant to provide explicit URLs so that proper API clients don't need to construct URLs on their own. It is highly recommended that API clients use these. Doing so will make future upgrades of the API easier for developers. All URLs are expected to be proper RFC 6570 URI templates.
You can then expand these templates using something like the uri_template gem:
>> tmpl = URITemplate.new('/notifications{?since,all,participating}')
>> tmpl.expand
=> "/notifications"
>> tmpl.expand all: 1
=> "/notifications?all=1"
>> tmpl.expand all: 1, participating: 1
=> "/notifications?all=1&participating=1"
Next steps
This article demonstrated how to list and create issues in a repository. For more practice, try to comment on an issue, edit the title of an issue, or close an issue. For more information, see the "Create an issue comment" endpoint and the "Update an issue" endpoint.
For more information about other endpoints that you can use, see the REST reference documentation.