If you are not sure if the website you would like to visit is secure, you can verify it here. Enter the website address of the page and see parts of its content and the thumbnail images on this site. None (if any) dangerous scripts on the referenced page will be executed. Additionally, if the selected site contains subpages, you can verify it (review) in batches containing 5 pages.
favicon.ico: apidocs.imgur.com - Imgur API.

site address: apidocs.imgur.com redirected to: apidocs.imgur.com

site title: Imgur API

Our opinion (on Saturday 16 May 2026 20:25:31 UTC):

GREEN status (no comments) - no comments

Meta tags:
description= ## API Status Status for the API can be found at [status.imgur.com](htt???/status.imgur.com)! ## Getting Started Imgur s API exposes the entire Imgur infrastructure via a standardized programmatic interface. Using Imgur s API, you can do just about anything you can do on imgur.com, while using your programming language of choice. The Imgur API is a RESTful API based on HTTP requests and JSON responses. This version of the API, version 3, uses OAuth 2.0. This means that all requests will need to be encrypted and sent via HTTPS. It also means that you need to register your application, even if you aren t allowing users to login. The easiest way to start using the Imgur API is by clicking the **Run in Postman** button above. [Postman](htt????/www.getpostman.com/) is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection. ## Example code These examples serve as a starting point to help familiarize you with the basics of the Imgur API. - [Official Python library](htt????/github.com/Imgur/imgurpython) - [Android Upload Example](htt????/github.com/AKiniyalocts/imgur-android) - [Older Example Android app](htt????/github.com/talklittle/ImgurAPIv3ExampleAndroid) - [Example HTML5/JavaScript app](htt????/github.com/eirikb/gifie) - [Javascript OAuth](htt????/gist.github.com/eirikb/7404666)—[Live Demo](htt???/eirikb.github.io/gifie/) (uses your webcam) - [Example Objective C library](htt????/github.com/geoffmacd/ImgurSession) ## Need help? The Imgur engineers are always around answering questions. The quickest way to get help is by posting your question on StackOverflow with the [Imgur tag](htt????/stackoverflow.com/questions/tagged/imgur). ## Register an Application (IMPORTANT) Each client must register their application and receive the `client_id` and `client_secret`. For public read-only and anonymous resources, such as getting image info, looking up user comments, etc. all you need to do is send an authorization header with your client_id in your requests. This also works if you d like to upload images anonymously (without the image being tied to an account), or if you d like to create an anonymous album. This lets us know which application is accessing the API. ``` Authorization: Client-ID ``` ### Registration Quickstart If you are just getting started, an easy way to explore the endpoints is by creating an application using following instructions below. 1. Download [Postman](htt????/www.getpostman.com/) and click the **Run in Postman** button at the top of this page. This will load our collection of endpoints into Postman for easy debugging. 2. [Register your application](htt????/api.imgur.com/oauth2/addclient) using the postman callback URL: `htt????/www.getpostman.com/oauth2/callback` 3. In Postman, under the main request builder panel, click the Authorization tab. Click the **Get New Access Token** button. Set **Auth URL** to `htt????/api.imgur.com/oauth2/authorize` and **Access Token URL** to `htt????/api.imgur.com/oauth2/token`. Add the **Client ID** and **Client Secret** you received from registering your application above, then click **Request Token** 4. After logging in and granting access to your application, you should receive a refresh token.Copy this refresh token, then click the gear icon in the top right of Postman. Click **Manage Environments** then **Add**, and add the `refreshToken`, `clientId`, and `clientSecret` fields as shown below 5. Inside the **Account** folder, run the **Generate Access Token** endpoint. The response you receive will give you an access token which will be valid for about a month. This token is automatically saved to your Postman environment via the JavaScript test for that endpoint as seen below. Whenever your token expires, just re-run this endpoint and a new token will be saved to your environment. 6. Run any endpoint within the collection. You have authorized your app and logged in with your username, so you are now making authenticated requests against the Imgur API. Happy hacking! ## Commercial Usage Your application is commercial if you re making any money with it (which includes in-app advertising), if you plan on making any money with it, or if it belongs to a commercial organization. To use Imgur s API commercially, you must first [register your application](htt????/api.imgur.com/oauth2/addclient). Once that s done, you must [register with RapidAPI](htt????/rapidapi.com/imgur/api/imgur-9). RapidAPI allows you to choose a pricing plan that fits your needs. From then on, the API endpoint is `htt????/imgur-apiv3.p.rapidapi.com/` which must be used in place of `htt????/api.imgur.com/`. Additionally, you must set a `X-Mashape-Key` request header with the key obtained from RapidAPI. ## Endpoints The API is accessed by making HTTP requests to a specific version endpoint URL, in which GET or POST variables contain information about what you wish to access. Every endpoint is accessed via an SSL-enabled HTTPS (port 443), this is because everything is using OAuth 2.0. Everything (methods, parameters, etc.) is fixed to a version number, and every call must contain one. Different Versions are available at different endpoint URLs. The latest version is Version 3. The stable HTTP endpoint for the latest version is: `htt????/api.imgur.com/3/` ## Responses Each response is wrapped in a data tag. This means if you have a response, it will always be within the data field. We also include a status code and success flag in the response. For more information and examples go to the [data models](htt????/api.imgur.com/models) page. Responses are either JSON (the default), JSONP, or XML. Response formats are specified by supplying an extension to the API call. For example, if you want to access the gallery information with JSON: ``` htt????/api.imgur.com/3/gallery.json ``` JSONP responses are made by adding the callback parameter via either GET or POST to the request. For example: ``` htt????/api.imgur.com/3/gallery.json?callback=function_name ``` and to specify an XML response, the URL is: ``` htt????/api.imgur.com/3/gallery.xml ``` ## Paging Results For the most part, if the API action is plural, you can page it via a query string parameter. NOTE: /gallery endpoints do not support the perPage query string, and /album/ id /images is not paged. Query String Parameter Required Description --- --- --- page optional Page number of the result set (default: 0) perPage optional Limit the number of results per page. (default: 50, max: 100) Example: ``` htt????/api.imgur.com/3/account/imgur/images/0.json?perPage=42&page=6 ``` ## Authentication The API requires each client to use OAuth 2 authentication. This means you ll have to [register your application](htt????/api.imgur.com/oauth2/addclient), and generate an access_code if you d like to log in as a user. For public read-only and anonymous resources, such as getting image info, looking up user comments, etc. all you need to do is send an authorization header with your client_id in your requests. This also works if you d like to upload images anonymously (without the image being tied to an account), or if you d like to create an anonymous album. This lets us know which application is accessing the API. ``` Authorization: Client-ID ``` For accessing a user s account, please visit the OAuth2 section of the docs. OAuth Endpoints To access OAuth, the following endpoints must be used: ``` htt????/api.imgur.com/oauth2/addclient htt????/api.imgur.com/oauth2/authorize htt????/api.imgur.com/oauth2/token ``` You can also verify your OAuth 2.0 tokens by setting your header and visiting the page ``` htt????/api.imgur.com/oauth2/secret ``` ## Rate Limits The Imgur API uses a credit allocation system to ensure fair distribution of capacity. Each application can allow _approximately 1,250 uploads per day or approximately 12,500 requests per day_. If the daily limit is hit five times in a month, then the app will be blocked for the rest of the month. The remaining credit limit will be shown with each requests response in the `X-RateLimit-ClientRemaining` HTTP header. We also limit each user (via their IP Address) for each application, this is to ensure that no single user is able to spam an application. This limit will simply stop the user from requesting more data for an hour. We recommend that each application takes precautions against spamming by implementing rate limiting on their own applications. Each response will also include the remaining credits for each user in the `X-RateLimit-UserLimit` HTTP header. Each request contains rate limit information in the HTTP response headers. HTTP Header Description --- --- X-RateLimit-UserLimit Total credits that can be allocated. X-RateLimit-UserRemaining Total credits available. X-RateLimit-UserReset Timestamp (unix epoch) for when the credits will be reset. X-RateLimit-ClientLimit Total credits that can be allocated for the application in a day. X-RateLimit-ClientRemaining Total credits remaining for the application in a day. Unless otherwise noted, an API call deducts 1 credit from your allocation. However, uploads have a significantly higher computational cost on our back-end, and deduct 10 credits per call. All OAuth calls, such as refreshing tokens or authorizing users, do not deduct any credits. You can also check the current rate limit status on your application by sending a GET request to ``` htt????/api.imgur.com/3/credits ``` Your use of the Imgur API is also limited by the number of POST requests your IP can make across all endpoints. This limit is _1,250 POST requests per hour_. [Commercial Usage](htt???/api.imgur.com/#commercial) is not impacted by this limit. Each POST request will contain the following headers. HTTP Header Description --- --- X-Post-Rate-Limit-Limit Total POST credits that are allocated. X-Post-Rate-Limit-Remaining Total POST credits available. X-Post-Rate-Limit-Reset Time in seconds until your POST ratelimit is reset # Authorization and OAuth ## OAuth 2.0 Overview The Imgur API uses OAuth 2.0 for authentication. OAuth 2.0 has four steps: registration, authorization, making the request, and getting new access_tokens after the initial one expired. - [Registration](htt????/api.imgur.com/oauth2/addclient) gives you your `client_id` and `client_secret`, which is then used to authorize the user to your app. - Authorization is the process of the user saying I would like YourSuperAwesomeImgurApp to access my data . YourSuperAwesomeImgurApp cannot access the user s account without them agreeing to it. After they agree, you will get refresh and access tokens. - `access_token`: is your secret key used to access the user s data. It can be thought of the user s password and username combined into one, and is used to access the user s account. It expires after 1 month. - `refresh_token`: is used to request new access_tokens. Since access_tokens expire after 1 month, we need a way to request new ones without going through the entire authorization step again. It does not expire. - `authorization_code`: is used for obtaining the the access and refresh tokens. It s purpose is to be immediately exchanged for an access_token and refresh_token. - Finally, after obtaining your access_token, you make your API requests by sending the Authorization header as such: `Authorization: Bearer YOUR_ACCESS_TOKEN` - Registration Each client must register their application and receive the client_id and client_secret. For public read-only and anonymous resources, such as getting image info, looking up user comments, etc. all you need to do is send an authorization header with your client_id in your requests. This also works if you d like to upload images anonymously (without the image being tied to an account), or if you d like to create an anonymous album. This lets us know which application is accessing the API. ``` Authorization: Client-ID YOUR_CLIENT_ID ``` ## Authorization > _NOTE:_ If your app is not only requesting public read-only information, then you may skip this step. To access a user s account, the user must first authorize your application so that you can get an access token. Requesting an access token is fairly straightforward: point a browser (pop-up, or full page redirect if needed) to a URL and include a set of query string parameters. ``` htt????/api.imgur.com/oauth2/authorize?client_id=YOUR_CLIENT_ID&response_type=REQUESTED_RESPONSE_TYPE&state=APPLICATION_STATE ``` The user will now be able to enter their password and accept that they d like to use your application. Once this happens, they will be redirected to your redirect URL (that you entered during registration) with the access token. You can now send the access token in the headers to access their account information. #### Forming the authorization URL Authorization Endpoint: `htt????/api.imgur.com/oauth2/authorize` Parameter Values Description --- --- --- response_type `token`, `code`, or `pin` _Only_ _`token`_ _should be used, as the other methods have been deprecated._ Determines if Imgur returns an access_token, authorization_code (_deprecated_), or a PIN code(_deprecated_). When using `token`, the `access_token` and `refresh_token` will be given to you in the form of query string parameters attached to your redirect URL, which the user may be able to read. client_id the Client ID you recieved from registration Indicates the client that is making the request. state any string This optional parameter indicates any state which may be useful to your application upon receipt of the response. Imgur round-trips this parameter, so your application receives the same value it sent. Possible uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations. #### The `response_type` Parameter `token`: This authorization flow will directly return the `access_token` and `refresh_token` via the redirect URL you specified during registration, in the form of hash query string parameters. Example: `htt???/example.com?access_token=ACCESS_TOKEN&token_type=Bearer&expires_in=3600` The `code` and `pin` response types have been deprecated and will soon no longer be supported. ### Handling the Authorization Response The response will be sent to the redirect URL that was specified during registration. The contents and format of the response is determined by the value of the response_type parameter. You re able to change your applications redirect URL at any time by accessing the [ apps section of your account settings](htt???/imgur.com/account/settings/apps). #### JavaScript responses for the response_type: `token` Imgur returns an access token to your application if the user grants your application the permissions it requested. The access token is returned to your application in the fragment as part of the `access_token` parameter. Since a fragment (the part of the URL after the `#`) is not sent to the server, client side javascript must parse the fragment and extract the value of the `access_token` parameter. Other parameters included in the response include `expires_in` and `token_type`. These parameters describe the lifetime of the token in seconds, and the kind of token that is being returned. If the `state` parameter was included in the request, then it is also included in the response. An example User Agent flow response is shown below: ``` htt????/example.com/oauthcallback#access_token=ACCESS_TOKEN&token_type=Bearer&expires_in=3600 ``` Below is a JavaScript snippet that parses the response and returns the parameters to the server. ``` js // First, parse the query string var params = , queryString = location.hash.substring(1), regex = /([^&=]+)=([^&]*)/g, m; while (m = regex.exec(queryString)) params[decodeURIComponent(m[1])] = decodeURIComponent(m[2]); // And send the token over to the server var req = new XMLHttpRequest(); // consider using POST so query isn t logged req.open( GET , htt????/ + window.location.host + /catchtoken? + queryString, true); req.onreadystatechange = function (e) if (req.readyState == 4) if(req.status == 200) window.location = params[ state ] else if(req.status == 400) alert( There was an error processing the token. ) else alert( something else other than 200 was returned ) ; req.send(null); ``` This code sends the parameters received on the fragment to the server using XMLHttpRequest and writes the access token to local storage in the browser. The latter is an optional step, and depends on whether or not the application requires other JavaScript code to make calls to the Imgur API. Also note that this code sends the parameters to the token endpoint, and they are sent over an HTTPS channel. #### Error Response The Imgur API returns an error if the user did not grant your application the permissions it requested. The error is returned to the application in the query string parameter error if the web server flow is used. If the user agent flow was used, then the error is returned in the fragment. If the state parameter was included in the request, it is also present in the error response. An example error response for the web server flow is shown below: ``` htt????/example.com/oauthcallback?error=access_denied ``` ### Making your requests Congrats! You must have the user s access_token at this point and you re ready to start making API requests to their account. All that s required for this is to set the header in your requests: ``` Authorization: Bearer YOUR_ACCESS_TOKEN ``` ### Refresh Tokens If a user has authorized their account but you no longer have a valid access_token for them, then a new one can be generated by using the refresh_token. When your application receives a refresh token, it is important to store that refresh token for future use. If your application loses the refresh token, you will have to prompt the user for their login information again. To obtain a new access token, your application performs a POST to `htt????/api.imgur.com/oauth2/token`. The request must include the following parameters to use a refresh token: Field Description --- --- refresh_token The refresh token returned from the authorization code exchange client_id The client_id obtained during application registration client_secret The client secret obtained during application registration grant_type As defined in the OAuth2 specification, this field must contain a value of: `refresh_token` As long as the user has not revoked the access granted to your application, the response includes a new access token. A response from such a request is shown below: ``` json access_token : 5c3118ebb73fbb275945ab340be60b610a3216d6 , refresh_token : d36b474c95bb9ee54b992c7c34fffc2cc343d0a7 , expires_in :3600, token_type : Bearer , account_username : saponifi3d ``` ### More OAuth 2 help and documentation For more information about how to use OAuth 2, please visit the great documentation from Google. At the time of writing, our OAuth 2 server is completely compatible with theirs. The documentation may be found here: [htt????/developers.google.com/accounts/docs/OAuth2](htt????/developers.google.com/accounts/docs/OAuth2) # Performance Tips Below are a few ways you can speed up your application s use of the Imgur API. If you have any additional feature requests, please reach out on Twitter [@imgurAPI](htt????/twitter.com/imgurAPI)! ### ETag Support The Imgur API supports [ETags](htt???/en.wikipedia.org/wiki/HTTP_ETag), which allows the API to signal to developers whether or not data from previous queries have changed. Usage: 1. When fetching from the Imgur API, the response header will include an ETag with a digest of the response data. Save this ETag value for future requests to the same route.An example ETag response header:`ETag: a695f4e9672bf7fc7a779ac12ead684d72292506 ` 2. On the next request to the same route, include a If-None-Match header in the request with the ETag from the first step. (Note: the quotations around the hash must be included)An example ETag request header:`If-None-Match: a695f4e9672bf7fc7a779ac12ead684d72292506 ` 3. If the data hasn t changed, the response status code will be _304_ (Not Modified) and no data will be returned. 4. If the response data has changed since the last request, the data is returned normally with a new ETag in the response header. Save this value for future requests. _Note:_ Although ETags help speed up your application, requests with the _If-None-Match_ header will still count towards rate limits. # API Deprecation When an API endpoint is scheduled for deprecation the following actions will be taken: 1. The endpoint documentation will be marked as deprececated and a migration plan will be added. 2. The endpoint will have a `Sunset` header ([Sunset HTTP Header](htt????/tools.ietf.org/id/draft-wilde-sunset-header-03.html)) added to incidate the last date the endpoint should be relied upon. 3. A email will be sent to active third party developers notifing of the deprecation. 4. A entry to the API changelog table will be added. When the `Sunset` date has passed followup email will be sent to active third party developers notifing of the deprecation. ## API Changelog Date Introduced Available Until Endpoint --- --- --- ## Additional Information If you have questions that aren t answered here, the [support page](htt????/help.imgur.com/hc/en-us/requests/new) provides details on how to get help.;

Headings (most frequently used words):

-

Text of the page (most frequently used words):
imgur, api,


Text of the page (random words):
imgur api
Thumbnail images (randomly selected): * Images may be subject to copyright.GREEN status (no comments)

    No Images


    Top 50 hastags from of all verified websites.

    Supplementary Information (add-on for SEO geeks)*- See more on header.verify-www.com

    Header

    HTTP/1.1 301 Moved Permanently
    Server nginx/1.21.6
    Date Sat, 16 May 2026 20:25:18 GMT
    Content-Type text/html
    Content-Length 169
    Connection close
    Location htt????/apidocs.imgur.com/
    HTTP/1.1 200 OK
    x-srv-trace v=1;t=8f27ca2d35f77df0
    x-srv-span v=1;s=040547eab2aca84d
    date Sat, 16 May 2026 20:25:18 GMT
    content-type text/html; charset=utf-8
    transfer-encoding chunked
    connection close
    content-security-policy font-src self *.getpostman.com documenter.postman.com fonts.gstatic.com fonts.googleapis.com *.pstmn.io; frame-ancestors none ; object-src none ; base-uri self ; img-src * data:; script-src self strict-dynamic *.getpostman.com documenter.postman.com documenter-assets.pstmn.io content.pstmn.io run.pstmn.io htt????/cdn.ravenjs.com nonce-IEur3TUWaNmDHIYlcCRp52z4tyZFePin1K0USKDSC4LtEjlc ; style-src self unsafe-inline *.getpostman.com documenter.postman.com *.pstmn.io fonts.gstatic.com fonts.googleapis.com; frame-src htt????/youtube.com htt????/www.youtube.com htt????/player.vimeo.com
    x-content-security-policy font-src self *.getpostman.com documenter.postman.com fonts.gstatic.com fonts.googleapis.com *.pstmn.io; frame-ancestors none ; object-src none ; base-uri self ; img-src * data:; script-src self strict-dynamic *.getpostman.com documenter.postman.com documenter-assets.pstmn.io content.pstmn.io run.pstmn.io htt????/cdn.ravenjs.com nonce-IEur3TUWaNmDHIYlcCRp52z4tyZFePin1K0USKDSC4LtEjlc ; style-src self unsafe-inline *.getpostman.com documenter.postman.com *.pstmn.io fonts.gstatic.com fonts.googleapis.com; frame-src htt????/youtube.com htt????/www.youtube.com htt????/player.vimeo.com
    x-webkit-csp font-src self *.getpostman.com documenter.postman.com fonts.gstatic.com fonts.googleapis.com *.pstmn.io; frame-ancestors none ; object-src none ; base-uri self ; img-src * data:; script-src self strict-dynamic *.getpostman.com documenter.postman.com documenter-assets.pstmn.io content.pstmn.io run.pstmn.io htt????/cdn.ravenjs.com nonce-IEur3TUWaNmDHIYlcCRp52z4tyZFePin1K0USKDSC4LtEjlc ; style-src self unsafe-inline *.getpostman.com documenter.postman.com *.pstmn.io fonts.gstatic.com fonts.googleapis.com; frame-src htt????/youtube.com htt????/www.youtube.com htt????/player.vimeo.com
    x-frame-options DENY
    strict-transport-security max-age=31536000; includeSubDomains; preload
    x-content-type-options nosniff
    referrer-policy no-referrer-when-downgrade
    x-xss-protection 1; mode=block
    access-control-allow-origin htt????/phs.getpostman.com
    access-control-allow-credentials true
    access-control-expose-headers
    etag W/ fe25-iYh7lqX1nPw8p7pxEYZwAfr7lIs
    Vary Accept-Encoding
    content-encoding gzip
    x-envoy-upstream-service-time 16
    cf-cache-status DYNAMIC
    set-cookie __cf_bm=Tfwr5hyUwhwct.hcDpRcWuiQtx421MatQ_ACMmsF2GI-1778963118.6763542-1.0.1.1-e6q5xLz3jvGej8KpMWuzCuj4.IZpRnBkn10X6Ht8dishh43KAxeEDcRjnz7cwcK0em6bYFKljbaSdNNfxb_O6fiG2eacf06T86clOP8foRULLTl6iVOx5nrjithcuDpY; HttpOnly; SameSite=None; Secure; Path=/; Domain=getpostman.com; Expires=Sat, 16 May 2026 20:55:18 GMT
    server cloudflare
    cf-ray 9fcd1c63be7a277b-IAD

    Meta Tags

    title="Imgur API"
    charset="utf-8"
    http-equiv="X-UA-Compatible" content="IE=edge"
    name="viewport" content="width=device-width,initial-scale=1"
    name="top-bar" content="3f434a"
    name="highlight" content="1bb76e"
    name="right-sidebar" content="34373c"
    name="logo" content="htt????/res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/768118b36f06c94b0306958b980558e6915839447e859fe16906e29d683976f0"
    name="logo-dark" content="htt????/res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/768118b36f06c94b0306958b980558e6915839447e859fe16906e29d683976f0"
    name="run-js" content="htt????/run.pstmn.io/button.js"
    name="environmentUID" content="-"
    name="isEnvFetchError" content="false"
    name="collection-info-public" content="true"
    name="collection-isPublicCollection" content="false"
    name="ownerId" content="1688173"
    name="publishedId" content="6YsWHMa"
    name="collectionId" content="1688173-9a20ba61-00a6-46ee-8aa2-2f195e325339"
    name="versionTagId" content="latest"
    name="description" content=" ## API Status Status for the API can be found at [status.imgur.com](htt???/status.imgur.com)! ## Getting Started Imgur's API exposes the entire Imgur infrastructure via a standardized programmatic interface. Using Imgur's API, you can do just about anything you can do on imgur.com, while using your programming language of choice. The Imgur API is a RESTful API based on HTTP requests and JSON responses. This version of the API, version 3, uses OAuth 2.0. This means that all requests will need to be encrypted and sent via HTTPS. It also means that you need to register your application, even if you aren't allowing users to login. The easiest way to start using the Imgur API is by clicking the **Run in Postman** button above. [Postman](htt????/www.getpostman.com/) is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection. ## Example code These examples serve as a starting point to help familiarize you with the basics of the Imgur API. - [Official Python library](htt????/github.com/Imgur/imgurpython) - [Android Upload Example](htt????/github.com/AKiniyalocts/imgur-android) - [Older Example Android app](htt????/github.com/talklittle/ImgurAPIv3ExampleAndroid) - [Example HTML5/JavaScript app](htt????/github.com/eirikb/gifie) - [Javascript OAuth](htt????/gist.github.com/eirikb/7404666)—[Live Demo](htt???/eirikb.github.io/gifie/) (uses your webcam) - [Example Objective C library](htt????/github.com/geoffmacd/ImgurSession) ## Need help? The Imgur engineers are always around answering questions. The quickest way to get help is by posting your question on StackOverflow with the [Imgur tag](htt????/stackoverflow.com/questions/tagged/imgur). ## Register an Application (IMPORTANT) Each client must register their application and receive the `client_id` and `client_secret`. For public read-only and anonymous resources, such as getting image info, looking up user comments, etc. all you need to do is send an authorization header with your client_id in your requests. This also works if you'd like to upload images anonymously (without the image being tied to an account), or if you'd like to create an anonymous album. This lets us know which application is accessing the API. ``` Authorization: Client-ID ``` ### Registration Quickstart If you are just getting started, an easy way to explore the endpoints is by creating an application using following instructions below. 1. Download [Postman](htt????/www.getpostman.com/) and click the **Run in Postman** button at the top of this page. This will load our collection of endpoints into Postman for easy debugging. 2. [Register your application](htt????/api.imgur.com/oauth2/addclient) using the postman callback URL: `htt????/www.getpostman.com/oauth2/callback` 3. In Postman, under the main request builder panel, click...
    name="documentationLayout" content="classic-double-column"
    name="generator" content="Postman Documenter"
    name="languages" content='[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}]'
    property="og:title" content="Imgur API"
    property="og:description" content=" ## API Status Status for the API can be found at [status.imgur.com](htt???/status.imgur.com)! ## Getting Started Imgur's API exposes the entire Imgur infrastructure via a standardized programmatic interface. Using Imgur's API, you can do just about anything you can do on imgur.com, while using your programming language of choice. The Imgur API is a RESTful API based on HTTP requests and JSON responses. This version of the API, version 3, uses OAuth 2.0. This means that all requests will need to be encrypted and sent via HTTPS. It also means that you need to register your application, even if you aren't allowing users to login. The easiest way to start using the Imgur API is by clicking the **Run in Postman** button above. [Postman](htt????/www.getpostman.com/) is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection. ## Exampl..."
    property="og:site_name" content="Imgur API"
    property="og:url" content="htt????/apidocs.imgur.com"
    property="og:image" content="htt????/res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/768118b36f06c94b0306958b980558e6915839447e859fe16906e29d683976f0"
    name="twitter:title" value="Imgur API"
    name="twitter:description" value=" ## API Status Status for the API can be found at [status.imgur.com](htt???/status.imgur.com)! ## Getting Started Imgur's API exposes the entire Imgur infrastructure via a standardized programmatic interface. Using Imgur's API, you can do just about anything you can do on imgur.com, while using your programming language of choice. The Imgur API is a RESTful API based on HTTP requests and JSON responses. This version of the API, version 3, uses OAuth 2.0. This means that all requests will need to be encrypted and sent via HTTPS. It also means that you need to register your application, even if you aren't allowing users to login. The easiest way to start using the Imgur API is by clicking the **Run in Postman** button above. [Postman](htt????/www.getpostman.com/) is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation. Every endpoint you see documented here is readily available by running our Postman collection. ## Exampl..."
    name="twitter:card" content="summary"
    name="twitter:domain" value="htt????/apidocs.imgur.com"
    name="twitter:image" content="htt????/res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/768118b36f06c94b0306958b980558e6915839447e859fe16906e29d683976f0"
    name="twitter:label1" value="Last Update"
    name="twitter:data1" value=""

    Load Info

    page size20577
    load time (s)0.767683
    redirect count1
    speed download26827
    server IP 98.94.229.252
    * all occurrences of the string "http://" have been changed to "htt???/"