{"info":{"_postman_id":"9a20ba61-00a6-46ee-8aa2-2f195e325339","name":"Imgur API","description":"\"\"\n\n

API Status

\n

Status for the API can be found at status.imgur.com!

\n

Getting Started

\n

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.

\n

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.

\n

The easiest way to start using the Imgur API is by clicking the Run in Postman button above. Postman 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.

\n

Example code

\n

These examples serve as a starting point to help familiarize you with the basics of the Imgur API.

\n\n

Need help?

\n

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.

\n

Register an Application (IMPORTANT)

\n

Each client must register their application and receive the client_id and client_secret.

\n

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.

\n
Authorization: Client-ID \n\n

Registration Quickstart

\n

If you are just getting started, an easy way to explore the endpoints is by creating an application using following instructions below.

\n
    \n
  1. Download Postman 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. \n
  3. Register your application using the postman callback URL: https://www.getpostman.com/oauth2/callback\"\"
  4. \n
  5. In Postman, under the main request builder panel, click the Authorization tab. Click the Get New Access Token button. Set Auth URL to https://api.imgur.com/oauth2/authorize and Access Token URL to https://api.imgur.com/oauth2/token. Add the Client ID and Client Secret you received from registering your application above, then click Request Token\"\"
  6. \n
  7. 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\"\"
  8. \n
  9. 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.\"\"
  10. \n
  11. 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!
  12. \n
\n

Commercial Usage

\n

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.

\n

To use Imgur's API commercially, you must first register your application. Once that's done, you must register with RapidAPI. RapidAPI allows you to choose a pricing plan that fits your needs. From then on, the API endpoint is https://imgur-apiv3.p.rapidapi.com/ which must be used in place of https://api.imgur.com/. Additionally, you must set a X-Mashape-Key request header with the key obtained from RapidAPI.

\n

Endpoints

\n

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.

\n

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.

\n

The stable HTTP endpoint for the latest version is:
https://api.imgur.com/3/

\n

Responses

\n

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 page.

\n

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:

\n
https://api.imgur.com/3/gallery.json\n\n

JSONP responses are made by adding the callback parameter via either GET or POST to the request. For example:

\n
https://api.imgur.com/3/gallery.json?callback=function_name\n\n

and to specify an XML response, the URL is:

\n
https://api.imgur.com/3/gallery.xml\n\n

Paging Results

\n

For the most part, if the API action is plural, you can page it via a query string parameter.

\n

NOTE: /gallery endpoints do not support the perPage query string, and /album/{id}/images is not paged.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Query String ParameterRequiredDescription
pageoptionalPage number of the result set (default: 0)
perPageoptionalLimit the number of results per page. (default: 50, max: 100)
\n

Example:

\n
https://api.imgur.com/3/account/imgur/images/0.json?perPage=42&page=6\n\n

Authentication

\n

The API requires each client to use OAuth 2 authentication. This means you'll have to register your application, 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.

\n
Authorization: Client-ID \n\n

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:

\n
https://api.imgur.com/oauth2/addclient\nhttps://api.imgur.com/oauth2/authorize\nhttps://api.imgur.com/oauth2/token\n\n

You can also verify your OAuth 2.0 tokens by setting your header and visiting the page

\n
https://api.imgur.com/oauth2/secret\n\n

Rate Limits

\n

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.

\n

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.

\n

Each request contains rate limit information in the HTTP response headers.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
HTTP HeaderDescription
X-RateLimit-UserLimitTotal credits that can be allocated.
X-RateLimit-UserRemainingTotal credits available.
X-RateLimit-UserResetTimestamp (unix epoch) for when the credits will be reset.
X-RateLimit-ClientLimitTotal credits that can be allocated for the application in a day.
X-RateLimit-ClientRemainingTotal credits remaining for the application in a day.
\n

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

\n
https://api.imgur.com/3/credits\n\n

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 is not impacted by this limit. Each POST request will contain the following headers.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
HTTP HeaderDescription
X-Post-Rate-Limit-LimitTotal POST credits that are allocated.
X-Post-Rate-Limit-RemainingTotal POST credits available.
X-Post-Rate-Limit-ResetTime in seconds until your POST ratelimit is reset
\n

Authorization and OAuth

\n

OAuth 2.0 Overview

\n

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.

\n\n

Each client must register their application and receive the client_id and client_secret.

\n

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.

\n
Authorization: Client-ID YOUR_CLIENT_ID\n\n

Authorization

\n
\n

NOTE: If your app is not only requesting public read-only information, then you may skip this step.

\n
\n

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.

\n
https://api.imgur.com/oauth2/authorize?client_id=YOUR_CLIENT_ID&response_type=REQUESTED_RESPONSE_TYPE&state=APPLICATION_STATE\n\n

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.

\n

Forming the authorization URL

\n

Authorization Endpoint: https://api.imgur.com/oauth2/authorize

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterValuesDescription
response_typetoken, code, or pinOnly 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_idthe Client ID you recieved from registrationIndicates the client that is making the request.
stateany stringThis 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.
\n

The response_type Parameter

\n

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: http://example.com?access_token=ACCESS_TOKEN&token_type=Bearer&expires_in=3600

\n

The code and pin response types have been deprecated and will soon no longer be supported.

\n

Handling the Authorization Response

\n

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.

\n

JavaScript responses for the response_type: token

\n

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:

\n
https://example.com/oauthcallback#access_token=ACCESS_TOKEN&token_type=Bearer&expires_in=3600\n\n

Below is a JavaScript snippet that parses the response and returns the parameters to the server.

\n
// First, parse the query string\nvar params = {}, queryString = location.hash.substring(1),\n    regex = /([^&=]+)=([^&]*)/g, m;\nwhile (m = regex.exec(queryString)) {\n  params[decodeURIComponent(m[1])] = decodeURIComponent(m[2]);\n}\n// And send the token over to the server\nvar req = new XMLHttpRequest();\n// consider using POST so query isn't logged\nreq.open('GET', 'https://' + window.location.host + '/catchtoken?' + queryString, true);\nreq.onreadystatechange = function (e) {\n  if (req.readyState == 4) {\n     if(req.status == 200){\n       window.location = params['state']\n   }\n  else if(req.status == 400) {\n        alert('There was an error processing the token.')\n    }\n    else {\n      alert('something else other than 200 was returned')\n    }\n  }\n};\nreq.send(null);\n\n
\n

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.

\n

Error Response

\n

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.

\n

An example error response for the web server flow is shown below:

\n
https://example.com/oauthcallback?error=access_denied\n\n

Making your requests

\n

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:

\n
Authorization: Bearer YOUR_ACCESS_TOKEN\n\n

Refresh Tokens

\n

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.

\n

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.

\n

To obtain a new access token, your application performs a POST to https://api.imgur.com/oauth2/token. The request must include the following parameters to use a refresh token:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
FieldDescription
refresh_tokenThe refresh token returned from the authorization code exchange
client_idThe client_id obtained during application registration
client_secretThe client secret obtained during application registration
grant_typeAs defined in the OAuth2 specification, this field must contain a value of: refresh_token
\n

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:

\n
{\n    \"access_token\":\"5c3118ebb73fbb275945ab340be60b610a3216d6\",\n    \"refresh_token\":\"d36b474c95bb9ee54b992c7c34fffc2cc343d0a7\",\n    \"expires_in\":3600,\n    \"token_type\":\"Bearer\",\n    \"account_username\":\"saponifi3d\"\n}\n\n
\n

More OAuth 2 help and documentation

\n

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: https://developers.google.com/accounts/docs/OAuth2

\n

Performance Tips

\n

Below are a few ways you can speed up your application's use of the Imgur API.

\n

If you have any additional feature requests, please reach out on Twitter @imgurAPI!

\n

ETag Support

\n

The Imgur API supports ETags, which allows the API to signal to developers whether or not data from previous queries have changed.

\n

Usage:

\n
    \n
  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. \n
  3. 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\"
  4. \n
  5. If the data hasn't changed, the response status code will be 304 (Not Modified) and no data will be returned.
  6. \n
  7. 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.\n Note: Although ETags help speed up your application, requests with the If-None-Match header will still count towards rate limits.
  8. \n
\n

API Deprecation

\n

When an API endpoint is scheduled for deprecation the following actions will be taken:

\n
    \n
  1. The endpoint documentation will be marked as deprececated and a migration plan will be added.
  2. \n
  3. The endpoint will have a Sunset header (Sunset HTTP Header) added to incidate the last date the endpoint should be relied upon.
  4. \n
  5. A email will be sent to active third party developers notifing of the deprecation.
  6. \n
  7. A entry to the API changelog table will be added.
  8. \n
\n

When the Sunset date has passed followup email will be sent to active third party developers notifing of the deprecation.

\n

API Changelog

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Date IntroducedAvailable UntilEndpoint
\n

Additional Information

\n

If you have questions that aren't answered here, the support page provides details on how to get help.

\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authorization and OAuth","slug":"authorization-and-oauth"},{"content":"Performance Tips","slug":"performance-tips"},{"content":"API Deprecation","slug":"api-deprecation"}],"owner":"1688173","collectionId":"9a20ba61-00a6-46ee-8aa2-2f195e325339","publishedId":"6YsWHMa","public":true,"customColor":{"top-bar":"3f434a","right-sidebar":"34373c","highlight":"1bb76e"},"publishDate":"2017-05-11T23:02:50.000Z"},"item":[{"name":"Account","item":[{"name":"Generate Access Token","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["let tokenStore = postman.getEnvironmentVariable(\"refreshTokenStore\");","","// Bail early if we have no token store. ","// This is only used for imgur testing because monitors run hourly","// and we would hit a ratelimit if we didn't randomize the user","if (!tokenStore) {"," return;","}","","function getRandomIntInclusive(min, max) {"," min = Math.ceil(min);"," max = Math.floor(max);"," return Math.floor(Math.random() * (max - min + 1)) + min;","}","","tokenStore = JSON.parse(tokenStore);","","const user = tokenStore[getRandomIntInclusive(0,9)];","","console.log(`using username ${user.username} with refresh token ${user.refreshToken} for testing`)","","postman.setEnvironmentVariable(\"username\", user.username)","postman.setEnvironmentVariable(\"refreshToken\", user.refreshToken)",""]}},{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","var accessToken = res.access_token;","var refreshToken = res.refresh_token;","tests['Returns 40 char hex access token'] = /^[a-f0-9]{40}$/i.test(accessToken);","tests['Returns 40 char hex refresh token'] = /^[a-f0-9]{40}$/i.test(refreshToken);","","postman.setEnvironmentVariable(\"accessToken\", accessToken);","","postman.setNextRequest(\"Account Base\"); // Account -> Account Base"]}}],"id":"3f80c836-8f49-4fb1-95a7-a4b058265d72","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"refresh_token","value":"{{refreshToken}}","description":"

The refresh token returned from the authorization code exchange

\n","type":"text"},{"key":"client_id","value":"{{clientId}}","description":"

The client_id obtained during application registration

\n","type":"text"},{"key":"client_secret","value":"{{clientSecret}}","description":"

The client secret obtained during application registration

\n","type":"text"},{"key":"grant_type","value":"refresh_token","description":"

As defined in the OAuth2 specification, this field must contain a value of: refresh_token

\n","type":"text"}]},"url":"https://api.imgur.com/oauth2/token","description":"

Given a user's refresh token, this endpoint generates an access token.

\n","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f80c836-8f49-4fb1-95a7-a4b058265d72"},{"name":"Account Base","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","tests['Status code is 200'] = (responseCode.code === 200);","","postman.setNextRequest(\"Image Upload\"); // Image -> Image Upload"]}}],"id":"c94c8719-fe68-4854-b96d-70735dd8b2bc","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}","description":"

Request standard user information. If you need the username for the account that is logged in, it is returned in the request for an access token. Note: This endpoint also supports the ability to lookup account base info by account ID. To do so, pass the query parameter account_id.

\n

Response Model: Account

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"70ef922a-74ab-4b40-9abf-f2aab0f8c44c","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Wed, 31 May 2017 14:56:02 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"42f114046cd3f43be6995f2566c8ebb31f9dd21a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"110","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"500","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"499","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496246162","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2621-IAD","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496242562.109182,VS0,VE30","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"a8af9726c6c741c5694e2164c15d1bdc","key":"IMGURSESSION"},{"expires":"Sat Jan 16 2038 11:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Mon Jan 18 2038 19:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"110","key":"backstage"},{"expires":"Sat Oct 28 2017 07:33:23 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"898d560972119ade98fdae2cc4313b0b%7EqnBR5g7CRpOGxrTXiaBYk1zqRz2O9165","key":"authautologin"},{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"upload.i-086fcbff9142dde07.production","key":"UPSERVERID"}],"responseTime":"133","body":"{\"data\":{\"id\":48437714,\"url\":\"ghostinspector\",\"bio\":null,\"avatar\":null,\"reputation\":0,\"reputation_name\":\"Neutral\",\"created\":1481839668,\"pro_expiration\":false,\"user_follow\":{\"status\":false}},\"success\":true,\"status\":200}"}],"_postman_id":"c94c8719-fe68-4854-b96d-70735dd8b2bc"},{"name":"Account Block Status","event":[{"listen":"test","script":{"id":"501fd98a-97cb-4419-85ec-8dda2f99e6f6","type":"text/javascript","exec":[""]}}],"id":"84d94570-a45c-42dc-ba76-1a6ec6f8664b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/account/v1/{{username}}/block","description":"

Determine if the user making the request has blocked a username.

\n

Response:

\n
{\n  \"data\": {\n    \"blocked\": boolean\n  }\n}\n\n
","urlObject":{"protocol":"https","path":["account","v1","{{username}}","block"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"daed581f-32e0-49e2-90fc-6cf81b7ca275","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Wed, 31 May 2017 14:56:02 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"42f114046cd3f43be6995f2566c8ebb31f9dd21a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"110","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"500","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"499","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496246162","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2621-IAD","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496242562.109182,VS0,VE30","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"a8af9726c6c741c5694e2164c15d1bdc","key":"IMGURSESSION"},{"expires":"Sat Jan 16 2038 11:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Mon Jan 18 2038 19:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"110","key":"backstage"},{"expires":"Sat Oct 28 2017 07:33:23 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"898d560972119ade98fdae2cc4313b0b%7EqnBR5g7CRpOGxrTXiaBYk1zqRz2O9165","key":"authautologin"},{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"upload.i-086fcbff9142dde07.production","key":"UPSERVERID"}],"responseTime":null,"body":"{\"data\":{\"id\":48437714,\"url\":\"ghostinspector\",\"bio\":null,\"avatar\":null,\"reputation\":0,\"reputation_name\":\"Neutral\",\"created\":1481839668,\"pro_expiration\":false,\"user_follow\":{\"status\":false}},\"success\":true,\"status\":200}"}],"_postman_id":"84d94570-a45c-42dc-ba76-1a6ec6f8664b"},{"name":"Account Blocks","event":[{"listen":"test","script":{"id":"501fd98a-97cb-4419-85ec-8dda2f99e6f6","type":"text/javascript","exec":[""]}}],"id":"a6aeb68f-26f3-4f48-b531-95a728f9897e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/block","description":"

List all accounts being blocked,

\n

Response:

\n
{\n  \"data\": {\n    \"items\": [\n      {\n        \"url\": \"officialimguraffe\"\n      }\n    ],\n    \"next\": null\n  },\n  \"success\": true,\n  \"status\": 200\n}\n\n
","urlObject":{"protocol":"https","path":["3","account","me","block"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"d0f5c6ab-570f-43fd-a9f1-1aa1fc1660fd","name":"Account Blocks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","disabled":false},{"key":"Accept","value":"application/vnd.api+json","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"Content-Types that are acceptable","enabled":true},{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials.","enabled":true},{"key":"Access-Control-Allow-Headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN, X-expSNKPK127","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request.","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource.","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"120","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Thu, 07 Jun 2018 18:20:32 GMT","name":"Date","description":"The date and time that the message was sent","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"A name for the server","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server.","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"Custom header","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"Custom header","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch","enabled":true},{"key":"X-Powered-By","value":"imgur/","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)","enabled":true},{"key":"X-Request-Id","value":"platform-7c4579df9b-hcngz/Ao7cHI7vhN-277209","name":"X-Request-Id","description":"Custom header","enabled":true},{"key":"X-Served-By","value":"cache-dca17742-DCA","name":"X-Served-By","description":"Custom header","enabled":true},{"key":"X-Timer","value":"S1528395632.374773,VS0,VE232","name":"X-Timer","description":"Custom header","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, PATCH, DELETE, OPTIONS","name":"access-control-allow-methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request.","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"items\": [\n {\n \"url\": \"officialimguraffe\"\n }\n ],\n \"next\": null\n },\n \"success\": true,\n \"status\": 200\n}"},{"id":"d851d76d-2237-4435-b4bf-8b789349e50f","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Wed, 31 May 2017 14:56:02 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"42f114046cd3f43be6995f2566c8ebb31f9dd21a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"110","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"500","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"499","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496246162","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2621-IAD","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496242562.109182,VS0,VE30","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"a8af9726c6c741c5694e2164c15d1bdc","key":"IMGURSESSION"},{"expires":"Sat Jan 16 2038 11:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Mon Jan 18 2038 19:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"110","key":"backstage"},{"expires":"Sat Oct 28 2017 07:33:23 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"898d560972119ade98fdae2cc4313b0b%7EqnBR5g7CRpOGxrTXiaBYk1zqRz2O9165","key":"authautologin"},{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"upload.i-086fcbff9142dde07.production","key":"UPSERVERID"}],"responseTime":null,"body":"{\"data\":{\"id\":48437714,\"url\":\"ghostinspector\",\"bio\":null,\"avatar\":null,\"reputation\":0,\"reputation_name\":\"Neutral\",\"created\":1481839668,\"pro_expiration\":false,\"user_follow\":{\"status\":false}},\"success\":true,\"status\":200}"}],"_postman_id":"a6aeb68f-26f3-4f48-b531-95a728f9897e"},{"name":"Account Block Create","event":[{"listen":"test","script":{"id":"501fd98a-97cb-4419-85ec-8dda2f99e6f6","type":"text/javascript","exec":[""]}}],"id":"b0a7c66d-6737-4f83-abce-69fe7d5d6061","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/account/v1/{{username}}/block","description":"

Block a user.

\n

Response:

\n
{\n  \"data\": {\n    \"blocked\": boolean\n  }\n}\n\n
","urlObject":{"protocol":"https","path":["account","v1","{{username}}","block"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"7388ebc2-611e-4a6d-a76a-4589b30522d4","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Wed, 31 May 2017 14:56:02 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"42f114046cd3f43be6995f2566c8ebb31f9dd21a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"110","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"500","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"499","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496246162","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2621-IAD","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496242562.109182,VS0,VE30","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"a8af9726c6c741c5694e2164c15d1bdc","key":"IMGURSESSION"},{"expires":"Sat Jan 16 2038 11:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Mon Jan 18 2038 19:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"110","key":"backstage"},{"expires":"Sat Oct 28 2017 07:33:23 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"898d560972119ade98fdae2cc4313b0b%7EqnBR5g7CRpOGxrTXiaBYk1zqRz2O9165","key":"authautologin"},{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"upload.i-086fcbff9142dde07.production","key":"UPSERVERID"}],"responseTime":null,"body":"{\"data\":{\"id\":48437714,\"url\":\"ghostinspector\",\"bio\":null,\"avatar\":null,\"reputation\":0,\"reputation_name\":\"Neutral\",\"created\":1481839668,\"pro_expiration\":false,\"user_follow\":{\"status\":false}},\"success\":true,\"status\":200}"}],"_postman_id":"b0a7c66d-6737-4f83-abce-69fe7d5d6061"},{"name":"Account Block Delete","event":[{"listen":"test","script":{"id":"501fd98a-97cb-4419-85ec-8dda2f99e6f6","type":"text/javascript","exec":[""]}}],"id":"aeb883a0-c9cc-488e-bac4-245448401af0","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/account/v1/{{username}}/block","description":"

Unblock a user.

\n

Response:

\n
{\n  \"data\": {\n    \"blocked\": boolean\n  }\n}\n\n
","urlObject":{"protocol":"https","path":["account","v1","{{username}}","block"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"5c09220e-203e-48bd-a52e-bf12b59ee55a","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Wed, 31 May 2017 14:56:02 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"42f114046cd3f43be6995f2566c8ebb31f9dd21a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"110","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"500","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"499","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496246162","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2621-IAD","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496242562.109182,VS0,VE30","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"a8af9726c6c741c5694e2164c15d1bdc","key":"IMGURSESSION"},{"expires":"Sat Jan 16 2038 11:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Mon Jan 18 2038 19:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"110","key":"backstage"},{"expires":"Sat Oct 28 2017 07:33:23 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"898d560972119ade98fdae2cc4313b0b%7EqnBR5g7CRpOGxrTXiaBYk1zqRz2O9165","key":"authautologin"},{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"upload.i-086fcbff9142dde07.production","key":"UPSERVERID"}],"responseTime":null,"body":"{\"data\":{\"id\":48437714,\"url\":\"ghostinspector\",\"bio\":null,\"avatar\":null,\"reputation\":0,\"reputation_name\":\"Neutral\",\"created\":1481839668,\"pro_expiration\":false,\"user_follow\":{\"status\":false}},\"success\":true,\"status\":200}"}],"_postman_id":"aeb883a0-c9cc-488e-bac4-245448401af0"},{"name":"Account Images","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var images = JSON.parse(responseBody).data.map(function(image){"," return image.id","});","","// grab the hash of the image that was just uploaded","var justUploadedImageHash = postman.getEnvironmentVariable(\"imageHash\");","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Response includes the previously uploaded image'] = images.indexOf(justUploadedImageHash) > -1;","","postman.setNextRequest('Album Creation (Un-Authed / Authed)'); // Album -> Album Creation (Un-Authed / Authed)"]}}],"id":"ee366f7c-69e6-46fd-bf26-e93303f64c84","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/images","description":"

To make requests for the current account, you may use me as the {{username}} parameter. For example, https://api.imgur.com/3/account/me/images will request all the images for the account that is currently authenticated.

\n","urlObject":{"protocol":"https","path":["3","account","me","images"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ee366f7c-69e6-46fd-bf26-e93303f64c84"},{"name":"Account Gallery Favorites","id":"56a1d1ff-d203-4a6e-b54e-e49f9bdfbc0d","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/gallery_favorites/{{page}}/{{favoritesSort}}","description":"

Return the images the user has favorited in the gallery.

\n\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
pageoptionalinteger - allows you to set the page number so you don't have to retrieve all the data at once.
favoriteSortoptionaloldest, or newest. Defaults to newest.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","gallery_favorites","{{page}}","{{favoritesSort}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"56a1d1ff-d203-4a6e-b54e-e49f9bdfbc0d"},{"name":"Account Favorites","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["// postman.setEnvironmentVariable(\"username\", \"postmanTestUser1\");"]}},{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","if (jsonData.status === 403) {"," postman.setNextRequest(\"request_name\");","} else {"," // tests[\"Your test name\"] = jsonData.value === 100;","}"]}}],"id":"a432a8e6-2ece-4544-bc7a-2999eb586f06","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/favorites/{{page}}/{{favoritesSort}}","description":"

Returns the users favorited images, only accessible if you're logged in as the user.

\n\n

Note: vote data ('ups', 'downs', and 'score') may be null if the favorited item hasn't been submitted to gallery

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
pageoptionalinteger - allows you to set the page number so you don't have to retrieve all the data at once.
sortoptional'oldest', or 'newest'. Defaults to 'newest'.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","favorites","{{page}}","{{favoritesSort}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a432a8e6-2ece-4544-bc7a-2999eb586f06"},{"name":"Account Submissions","id":"286367c1-bb24-4e74-bad9-d2c75b943b3c","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/submissions/{{page}}","description":"

Return the images a user has submitted to the gallery. You can add sorting as well after paging. Sorts can be: newest (default), oldest, worst, best.

\n\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","submissions","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"1a5cfc31-8dc2-4e2b-b586-77570ddad734","name":"Account Submissions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/submissions/{{page}}/{{sort}}"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":""}],"_postman_id":"286367c1-bb24-4e74-bad9-d2c75b943b3c"},{"name":"Account Available Avatars (Un-authed / Authed)","id":"ff70e965-286b-4a36-9745-de646aedfb81","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","description":"

If authenticated send the bearer token

\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/available_avatars","description":"

If unauthentiated, get list of default trophies a user can select from. The username need not exist to get the listing.

\n

If authenticated, get the list of available avatars for the given user.

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","available_avatars"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff70e965-286b-4a36-9745-de646aedfb81"},{"name":"Account Avatar (Authed)","id":"6427d23d-2ad2-44e3-846d-65d7b042afbd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/avatar","description":"

Get the current account's avatar URL and avatar name.

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","avatar"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6427d23d-2ad2-44e3-846d-65d7b042afbd"},{"name":"Account Settings","id":"ce57e346-3515-4381-a772-ef5ade60bdee","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/settings","description":"

Returns the account settings, only accessible if you're logged in as the user.

\n","urlObject":{"protocol":"https","path":["3","account","me","settings"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce57e346-3515-4381-a772-ef5ade60bdee"},{"name":"Change Account Settings","id":"7bc88d39-d06d-4661-afff-38ea5b9a1d0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"bio","value":"Long time lurker...","type":"text","disabled":true},{"key":"public_images","value":"false","type":"text","disabled":true},{"key":"messaging_enabled","value":"true","type":"text","disabled":true},{"key":"album_privacy","value":"public","type":"text","description":"

(deprecated)

\n","disabled":true},{"key":"accepted_gallery_terms","value":"true","type":"text","disabled":true},{"key":"username","value":"ImgurUser","type":"text","disabled":true},{"key":"show_mature","value":"true","type":"text","disabled":true},{"key":"newsletter_subscribed","value":"true","type":"text","disabled":true},{"key":"avatar","value":"flavor/taco","description":"

See Account Available Avatars for possible values

\n","type":"text","disabled":true}]},"url":"https://api.imgur.com/3/account/{{username}}/settings","description":"

Updates the account settings for a given user, the user must be logged in.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
biooptionalThe biography of the user, is displayed in the gallery profile page.
public_imagesoptionalSet the users images to private or public by default
messaging_enabledoptionaltrue | false - Allows the user to enable / disable private messages
album_privacyoptional(deprecated) public | hidden | secret - Sets the default privacy level of albums the users creates
accepted_gallery_termsoptionaltrue | false - The user agreement to the Imgur Gallery terms.
usernameoptionalA valid Imgur username (between 4 and 63 alphanumeric characters)
show_matureoptionaltrue | false - Toggle display of mature images in gallery list endpoints.
newsletter_subscribedoptionaltrue | false - Toggle subscription to email newsletter.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","settings"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bc88d39-d06d-4661-afff-38ea5b9a1d0a"},{"name":"Account Gallery Profile","id":"7dabd76a-5107-41c5-bae1-9537c7973a5b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/settings","description":"

Returns the totals for the gallery profile.

\n\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","settings"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7dabd76a-5107-41c5-bae1-9537c7973a5b"},{"name":"Verify User's E-mail","id":"84599b5d-90a4-469d-bd44-b5ef9eda35ef","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/verifyemail","description":"

Checks to see if user has verified their email address.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","verifyemail"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"84599b5d-90a4-469d-bd44-b5ef9eda35ef"},{"name":"Send Verification E-mail","id":"0b86c95c-fdfe-4b52-989a-a2f03d30d068","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/verifyemail","description":"

Sends an email to the user to verify that their email is valid to upload to gallery. Must be logged in as the user to send.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","verifyemail"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b86c95c-fdfe-4b52-989a-a2f03d30d068"},{"name":"Albums (Un-Authed / Authed)","id":"a9931b00-47ab-4144-b058-a15906bf3e15","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/albums/{{page}}","description":"

Get all the albums associated with the account. Must be logged in as the user to see secret and hidden albums.

\n

Response Model: Album

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
pageoptionalinteger - allows you to set the page number so you don't have to retrieve all the data at once.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","albums","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9931b00-47ab-4144-b058-a15906bf3e15"},{"name":"Album","id":"f57e9ff3-0d25-4804-bc53-53e9e54be813","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/album/{{albumHash}}","description":"

Get additional information about an album, this endpoint works the same as the Album Endpoint. You can also use any of the additional routes that are used on an album in the album endpoint.

\n

Response Model: Album

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f57e9ff3-0d25-4804-bc53-53e9e54be813"},{"name":"Album IDs (Un-Authed / Authed)","id":"c13fe966-0f8f-425d-9247-298e302e1bc0","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/albums/ids/{{page}}","description":"

Return an array of all of the album IDs (hashes).

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","albums","ids","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c13fe966-0f8f-425d-9247-298e302e1bc0"},{"name":"Album Count (Un-Authed / Authed)","id":"2b23b949-25d1-4ce3-831a-95d2e2e4ad0a","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/albums/count","description":"

Return the total number of albums associated with the account.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","albums","count"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b23b949-25d1-4ce3-831a-95d2e2e4ad0a"},{"name":"Album Deletion","id":"5704feb4-9e99-43ad-9247-1b1dd69de0bb","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/album/{{albumHash}}","description":"

Delete an Album with a given id.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5704feb4-9e99-43ad-9247-1b1dd69de0bb"},{"name":"Comments","id":"a1813588-ec93-46c4-985b-9e53d7b1c316","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/comments/{{commentSort}}/{{page}}","description":"

Return the comments the user has created.

\n

Response Model: Comment

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
commentSortoptionalbest, worst, oldest, or newest. Defaults to newest.
pageoptionalPage number (50 items per page). Defaults to 0.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","comments","{{commentSort}}","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1813588-ec93-46c4-985b-9e53d7b1c316"},{"name":"Comment","id":"cc7b4efa-0080-474f-8442-23606967be84","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/comment/{{commentId}}","description":"

Return information about a specific comment. This endpoint works the same as the Comment Endpoint. You can use any of the additional actions that the comment endpoint allows on this end point.

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc7b4efa-0080-474f-8442-23606967be84"},{"name":"Comment IDs","id":"74cbce39-37e6-4ddd-b9aa-c5bc8aaf8f49","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/comments/ids/{{sort}}/{{page}}","description":"

Return an array of all of the comment IDs.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
commentSortoptionalbest, worst, oldest, or newest. Defaults to newest.
pageoptionalPage number (50 items per page). Defaults to 0.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","comments","ids","{{sort}}","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"74cbce39-37e6-4ddd-b9aa-c5bc8aaf8f49"},{"name":"Comment Count","id":"e67c348d-c235-4839-8041-7244ced0c7db","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/comments/count","description":"

Return a count of all of the comments associated with the account.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","comments","count"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e67c348d-c235-4839-8041-7244ced0c7db"},{"name":"Comment Deletion","id":"1fc8de55-3a75-4c20-939b-c160be701fc7","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/comment/{{commentId}}","description":"

Delete a comment. You are required to be logged in as the user whom created the comment.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fc8de55-3a75-4c20-939b-c160be701fc7"},{"name":"Images","id":"2e45daca-bd44-47f8-84b0-b3f2aa861735","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/images/{{page}}","description":"

Return all of the images associated with the account. You can page through the images by setting the page, this defaults to 0.

\n

Response Model: Image

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","images","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e45daca-bd44-47f8-84b0-b3f2aa861735"},{"name":"Image","id":"0b597c3a-6be5-46db-8158-4e4c212eaa5a","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/image/{{imageId}}","description":"

Return information about a specific image. This endpoint works the same as the Image Endpoint. You can use any of the additional actions that the image endpoint with this endpoint.

\n

Response Model: Image

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","image","{{imageId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b597c3a-6be5-46db-8158-4e4c212eaa5a"},{"name":"Image IDs","id":"a7b687b0-1476-4e56-bf1e-78794c71bb15","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/images/ids/{{page}}","description":"

Returns an array of Image IDs that are associated with the account.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","images","ids","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7b687b0-1476-4e56-bf1e-78794c71bb15"},{"name":"Image Count","id":"2c9edd88-e763-43b4-8ca8-557609d197c3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/images/count","description":"

Returns the total number of images associated with the account.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","images","count"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c9edd88-e763-43b4-8ca8-557609d197c3"},{"name":"Image Deletion","id":"ac2ff3c0-3087-463e-91f7-b00b102b57f1","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/image/{{deleteHash}}","description":"

Deletes an Image. This requires a delete hash rather than an ID.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","account","{{username}}","image","{{deleteHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac2ff3c0-3087-463e-91f7-b00b102b57f1"},{"name":"Replies","id":"d40c55bc-6487-4618-acc9-31f616fae724","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/{{username}}/notifications/replies","description":"

Returns all of the reply notifications for the user. Required to be logged in as that user.

\n

Response Model: Notification

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
newoptionalboolean - false for all notifications, true for only non-viewed notification. Default is true.
\n
","urlObject":{"protocol":"https","path":["3","account","{{username}}","notifications","replies"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d40c55bc-6487-4618-acc9-31f616fae724"},{"name":"Follow Tag","id":"1f3f60f1-fc3f-4d06-b1c5-9bfc3610dacf","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/{{tagName}}","description":"

Follows the {{tagName}} specified for the currently logged in user.

\n","urlObject":{"protocol":"https","path":["3","account","me","follow","tag","{{tagName}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"6386dabc-cac7-455d-9f16-f22025fbf99d","name":"Follow Tag: Tag Does Not Exist","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/{{tagName}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 02 Jun 2017 23:38:20 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"01b15643ab5929bc68c8536a37aad4b33335b3b7\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Limit","value":"1250","name":"X-Post-Rate-Limit-Limit","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Remaining","value":"1208","name":"X-Post-Rate-Limit-Remaining","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Reset","value":"875","name":"X-Post-Rate-Limit-Reset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-sea1029-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496446700.380993,VS0,VE92","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"130","body":"{\"data\":{\"error\":\"Tag does not exist\",\"request\":\"\\/3\\/account\\/me\\/follow\\/tag\\/{{tagName}}\",\"method\":\"POST\"},\"success\":false,\"status\":404}"},{"id":"263c33d7-8aac-41ad-b467-5d39c57445a8","name":"Follow Tag: Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/funny"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 02 Jun 2017 23:30:47 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"4a931e85c4c3e49f1fb921656d64b65510e32928\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Limit","value":"1250","name":"X-Post-Rate-Limit-Limit","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Remaining","value":"1216","name":"X-Post-Rate-Limit-Remaining","description":"","enabled":true},{"key":"X-Post-Rate-Limit-Reset","value":"1327","name":"X-Post-Rate-Limit-Reset","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12500","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"2000","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"1999","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496449847","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-sea1029-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496446248.628701,VS0,VE146","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"170","body":"{\"data\":true,\"success\":true,\"status\":200}"}],"_postman_id":"1f3f60f1-fc3f-4d06-b1c5-9bfc3610dacf"},{"name":"Unfollow tag","id":"952bcee4-aab9-4679-9261-04845c59355e","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/{{tagName}}","description":"

Unfollows the {{tagName}} specified for the currently logged in user.

\n","urlObject":{"protocol":"https","path":["3","account","me","follow","tag","{{tagName}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"30f8b9c3-7a2d-4a0f-b757-a28f53661ae1","name":"Unfollow Tag: Tag Does Not Exist","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/{{tagName}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 02 Jun 2017 23:37:06 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"6c7c0e7d55aaf4aa3f3001f04ebddad4c9daab9a\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-sea1029-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496446626.259756,VS0,VE96","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"134","body":"{\"data\":{\"error\":\"Tag does not exist\",\"request\":\"\\/3\\/account\\/me\\/follow\\/tag\\/{{tagName}}\",\"method\":\"DELETE\"},\"success\":false,\"status\":404}"},{"id":"0422f08b-ff19-4e8b-b878-0e6a571a7be2","name":"Unfollow Tag: Not Following","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/funny"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 02 Jun 2017 23:34:41 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"\"e227211b0191945f4be2ec72f81c138f52baae21\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-sea1029-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496446482.679292,VS0,VE94","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"119","body":"{\"data\":{\"error\":\"Not following tag\",\"request\":\"\\/3\\/account\\/me\\/follow\\/tag\\/funny\",\"method\":\"DELETE\"},\"success\":false,\"status\":409}"},{"id":"1f26c4d1-732e-44f2-96b4-a86523239154","name":"Unfollow Tag: Success","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/account/me/follow/tag/funny"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 02 Jun 2017 23:32:31 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"4a931e85c4c3e49f1fb921656d64b65510e32928\"","name":"ETag","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-RateLimit-ClientLimit","value":"12500","name":"X-RateLimit-ClientLimit","description":"","enabled":true},{"key":"X-RateLimit-ClientRemaining","value":"12499","name":"X-RateLimit-ClientRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserLimit","value":"2000","name":"X-RateLimit-UserLimit","description":"","enabled":true},{"key":"X-RateLimit-UserRemaining","value":"1998","name":"X-RateLimit-UserRemaining","description":"","enabled":true},{"key":"X-RateLimit-UserReset","value":"1496449847","name":"X-RateLimit-UserReset","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-sea1029-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1496446351.410382,VS0,VE147","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"185","body":"{\"data\":true,\"success\":true,\"status\":200}"}],"_postman_id":"952bcee4-aab9-4679-9261-04845c59355e"},{"name":"Account Delete (me)","id":"dcdbad18-260a-4501-8618-a26e7ccb8596","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"\",\n\t\"reasons\": [\n\t\t\"Reason #1\",\n\t\t\"Reason #2\"\n\t],\n\t\"feedback\": \"MOAR CATGIFS\"\n}"},"url":"https://{{hostname}}/3/account/me/delete?client_id={{clientId}}","description":"

Delete the account of the auth'd user with delete feedback.

\n

note: password is left blank to avoid accidental account deletion, to delete account you must add account password to body.

\n","urlObject":{"protocol":"https","path":["3","account","me","delete"],"host":["{{hostname}}"],"query":[{"key":"client_id","value":"{{clientId}}"}],"variable":[]}},"response":[],"_postman_id":"dcdbad18-260a-4501-8618-a26e7ccb8596"}],"id":"a94d108b-d6e3-4e68-9521-47ea79501c85","_postman_id":"a94d108b-d6e3-4e68-9521-47ea79501c85","description":""},{"name":"Comment","item":[{"name":"Comment","id":"fba2b4a0-a0b9-47e0-80ae-f2f41201f2c3","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/comment/{{commentId}}","description":"

Get information about a specific comment.

\n

Response Model: Comment

\n","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fba2b4a0-a0b9-47e0-80ae-f2f41201f2c3"},{"name":"Comment Creation","id":"01dce1de-f332-4a14-88fa-25f97cc13613","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"image_id","value":"{{imageHash}}","type":"text"},{"key":"image_id","value":"{{albumHash}}","type":"text","disabled":true},{"key":"comment","value":"I'm a giraffe!","type":"text"},{"key":"parent_id","value":"{{commentId}}","type":"text","disabled":true}]},"url":"https://api.imgur.com/3/comment","description":"

Creates a new comment, returns the ID of the comment.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
image_idrequiredThe ID of the image or album in the gallery that you wish to comment on
commentrequiredThe comment text, this is what will be displayed
parent_idoptionalThe ID of the parent comment, this is an alternative method to create a reply.
\n
","urlObject":{"protocol":"https","path":["3","comment"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"01dce1de-f332-4a14-88fa-25f97cc13613"},{"name":"Comment Deletion","id":"946e326e-47ba-4da7-a7fb-026c727e28ac","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/comment/{{commentId}}","description":"

Delete a comment by the given id.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"946e326e-47ba-4da7-a7fb-026c727e28ac"},{"name":"Replies","id":"8d5f32eb-64e1-436e-a0e1-2f9db82e7e67","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/comment/{{commentId}}/replies","description":"

Get the comment with all of the replies for the comment.

\n

Response Model: Comment

\n","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}","replies"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d5f32eb-64e1-436e-a0e1-2f9db82e7e67"},{"name":"Reply Creation","id":"d7aea8ae-eb82-4ead-bb51-7a2f6b209fac","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"image_id","value":"{{imageHash}}","type":"text"},{"key":"image_id","value":"{{albumHash}}","type":"text","disabled":true},{"key":"comment","value":"I'm a giraffe!","type":"text"}]},"url":"https://api.imgur.com/3/comment/{{commentId}}","description":"

Create a reply for the given comment.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
image_idrequiredThe ID of the image or album in the gallery that you wish to comment on
commentrequiredThe comment text, this is what will be displayed
\n
","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7aea8ae-eb82-4ead-bb51-7a2f6b209fac"},{"name":"Vote","id":"2d9d6c7b-7ff1-499d-ab7f-1b488063dc62","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/comment/{{commentId}}/vote/{{vote}}","description":"

Vote on a comment. The vote parameter can only be set as up, down, or veto.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}","vote","{{vote}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d9d6c7b-7ff1-499d-ab7f-1b488063dc62"},{"name":"Report","id":"174c15ca-66f9-4c37-8ff5-da36c15a0fbd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"reason","value":"{{commentReportReason}}","description":"

Optional. An integer representing the reason for the report

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
1Doesn't belong on Imgur
2Spam
3Abusive
4Mature content not marked as mature
5Pornography
\n
","type":"text"}]},"url":"https://api.imgur.com/3/comment/{{commentId}}/report","description":"

Report a comment for being inappropriate.

\n","urlObject":{"protocol":"https","path":["3","comment","{{commentId}}","report"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"174c15ca-66f9-4c37-8ff5-da36c15a0fbd"}],"id":"f9236628-fd66-4b4a-bf3c-fb65074dd560","description":"

\"image\"

\n","_postman_id":"f9236628-fd66-4b4a-bf3c-fb65074dd560"},{"name":"Album","item":[{"name":"Album","id":"5369b915-ad8b-47b1-b44b-8e2561e41cee","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumHash}}","description":"

Get additional information about an album.

\n

Response Model: Album

\n","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5369b915-ad8b-47b1-b44b-8e2561e41cee"},{"name":"Album Images","id":"7dde894b-a967-4419-9be2-082fbf379109","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumHash}}/images","description":"

Return all of the images in the album.

\n

Response Model: Image

\n","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}","images"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7dde894b-a967-4419-9be2-082fbf379109"},{"name":"Album Image","id":"d4a30456-8905-40e0-8e14-9b51194c197e","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumHash}}/image/{{imageHash}}","description":"

Get information about an image in an album, any additional actions found in Image Endpoint will also work.

\n

Response Model: Image

\n","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}","image","{{imageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4a30456-8905-40e0-8e14-9b51194c197e"},{"name":"Album Creation (Un-Authed / Authed)","event":[{"listen":"test","script":{"id":"8220c7fd-1390-44d5-8cfc-99a9bb23076f","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","var albumHash = res.data.id;","var albumDeleteHash = res.data.deletehash;","","tests['Returns 7 char alphanumeric album id'] = /^[a-z0-9]{5}$/i.test(albumHash);","tests['Returns 15 char alhpanumeric album deletehash'] = /^[a-z0-9]{15}$/i.test(albumDeleteHash);","","postman.setEnvironmentVariable('albumHash', albumHash);","postman.setEnvironmentVariable('galleryHash', albumHash);","postman.setEnvironmentVariable('albumDeleteHash', albumDeleteHash);","","tests['Status code is 200'] = (responseCode.code === 200);","","postman.setNextRequest('Share with Community (Album)'); // Gallery -> Share with Community (Album)"],"type":"text/javascript"}}],"id":"8f89bd41-28a1-4624-9393-95e12cec509a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","description":"

Use this header if performing this action as a logged-in user.

\n"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text","description":"

The image ids that you want to be included in the album.

\n"},{"key":"ids[]","value":"{{imageHash2}}","type":"text","description":"

any additional image ids...

\n","disabled":true},{"key":"deletehashes[]","value":"{{deleteHash}}","type":"text","description":"

The deletehashes of the images that you want to be included in the album.

\n","disabled":true},{"key":"deletehashes[]","value":"{{deleteHash2}}","type":"text","description":"

any additional deletehashes...

\n","disabled":true},{"key":"title","value":"My dank meme album","type":"text","description":"

The title of the album

\n"},{"key":"description","value":"This albums contains a lot of dank memes. Be prepared.","type":"text","description":"

The description of the album

\n"},{"key":"privacy","value":"public","type":"text","description":"

(deprecated) Sets the privacy level of the album. Values are : public | hidden | secret. Defaults to user's privacy settings for logged in users.

\n","disabled":true},{"key":"cover","value":"{{imageHash}}","type":"text","description":"

The ID of an image that you want to be the cover of the album

\n"}]},"url":"https://api.imgur.com/3/album","description":"

Create a new album. Optional parameter of ids[] is an array of image ids to add to the album. If uploading anonymous images to an anonymous album please use the optional parameter of deletehashes[] rather than ids[]. Note: including the optional deletehashes[] parameter will also work for authenticated user albums. There is no need to duplicate image ids with their corresponding deletehash.

\n

This method is available without authenticating an account, and may be used merely by sending \"Authorization: Client-ID {client_id}\" in the request headers. Doing so will create an anonymous album which is not tied to an account.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]optionalThe image ids that you want to be included in the album.
deletehashes[]optionalThe deletehashes of the images that you want to be included in the album.
titleoptionalThe title of the album
descriptionoptionalThe description of the album
privacyoptional(deprecated) Sets the privacy level of the album. Values are : public | hidden | secret. Defaults to user's privacy settings for logged in users.
layoutoptional(deprecated) Sets the layout to display the album. Values are : blog | grid | horizontal | vertical
coveroptionalThe ID of an image that you want to be the cover of the album
\n
","urlObject":{"protocol":"https","path":["3","album"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f89bd41-28a1-4624-9393-95e12cec509a"},{"name":"Update Album (Un-Authed / Authed)","id":"64d18143-852b-4eb4-b1a5-b4522920767a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","description":"

Use this header if performing this action as a logged-in user.

\n"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text","description":"

Optional. The image ids that you want to be included in the album.

\n","disabled":true},{"key":"ids[]","value":"{{image2Hash}}","type":"text","description":"

any additional image ids...

\n","disabled":true},{"key":"deletehashes","value":"{{deleteHash}}","type":"text","description":"

Optional. The deletehashes of the images that you want to be included in the album.

\n"},{"key":"title","value":"My dank meme album","type":"text","description":"

Optional. The title of the album

\n"},{"key":"description","value":"This album contains a lot of dank memes. Be prepared.","type":"text","description":"

Optional. The description of the album

\n"},{"key":"privacy","value":"public","type":"text","description":"

(deprecated) Optional. Sets the privacy level of the album. Values are : public | hidden | secret. Defaults to user's privacy settings for logged in users.

\n","disabled":true},{"key":"cover","value":"{{imageHash}}","type":"text","description":"

Optional. The ID of an image that you want to be the cover of the album

\n"}]},"url":"https://api.imgur.com/3/album/{{albumHash}}","description":"

Update the information of an album. For anonymous albums, albumHash should be the deletehash that is returned at creation.

\n

If uploading anonymous images to an anonymous album please use the optional parameter of deletehashes[] rather than ids[]. Note: including the optional deletehashes[] parameter will also work for authenticated user albums. There is no need to duplicate image ids with their corresponding deletehash.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]optionalThe image ids that you want to be included in the album.
deletehashes[]optionalThe deletehashes of the images that you want to be included in the album.
titleoptionalThe title of the album
descriptionoptionalThe description of the album
privacyoptional(deprecated) Sets the privacy level of the album. Values are : public | hidden | secret. Defaults to user's privacy settings for logged in users.
layoutoptional(deprecated) Sets the layout to display the album. Values are : blog | grid | horizontal | vertical
coveroptionalThe ID of an image that you want to be the cover of the album
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"64d18143-852b-4eb4-b1a5-b4522920767a"},{"name":"Album Deletion (Un-Authed)","id":"2a8759da-625f-4519-a8df-1b08c7377be7","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumDeleteHash}}","description":"

Delete an album with a given deletehash.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","album","{{albumDeleteHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a8759da-625f-4519-a8df-1b08c7377be7"},{"name":"Album Deletion (Authed)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Album deletion was successful'] = res.success === true && res.data === true;","","postman.setNextRequest('Image Deletion (Authed)'); // Image -> Image Deletion (Authed)"]}}],"id":"682edfd5-c273-4cf1-8a28-cbd88e5568c4","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumHash}}","description":"

Delete an album with a given ID. You are required to be logged in as the user to delete the album.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"682edfd5-c273-4cf1-8a28-cbd88e5568c4"},{"name":"Favorite Album","id":"31c72664-59c1-426f-98d7-ac7ad6547cc2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/album/{{albumHash}}/favorite","description":"

Favorite an album with a given ID. The user is required to be logged in to favorite the album.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}","favorite"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"31c72664-59c1-426f-98d7-ac7ad6547cc2"},{"name":"Set Album Images (Un-Authed)","id":"e5ad9d1f-f68f-41a2-9b85-2a60a7db705d","request":{"method":"POST","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[{"key":"deletehashes[]","value":"{{imageDeleteHash}}","type":"text"},{"key":"deletehashes[]","value":"{{imageDeleteHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumDeleteHash}}","description":"

Sets the images for an album, removes all other images and only uses the images in this request.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
deletehashes[]requiredThe image deletehashes that you want to be added to the album.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumDeleteHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5ad9d1f-f68f-41a2-9b85-2a60a7db705d"},{"name":"Set Album Images (Authed)","id":"851abce0-9b9b-486c-9ea2-cacfc7bd21d4","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text"},{"key":"ids[]","value":"{{imageHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumHash}}","description":"

Sets the images for an album, removes all other images and only uses the images in this request. You must include either ids[] or deletehashes[].

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]optionalThe image ids that you want to be added to the album.
deletehashes[]optionalThe image deletehashes that you want to be added to the album.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"851abce0-9b9b-486c-9ea2-cacfc7bd21d4"},{"name":"Add Images to an Album (Un-Authed)","id":"172a2cdb-059e-40c8-8cb9-0f41a0e24d37","request":{"method":"POST","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[{"key":"deletehashes[]","value":"{{imageDeleteHash}}","type":"text"},{"key":"deletehashes[]","value":"{{imageDeleteHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumDeleteHash}}/add","description":"

Takes parameter, deletehashes[], as an array of deletehashes to add to the album. Alternatively, the deletehashes parameter can take a comma delimted string of deletehashes.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
deletehashes[]requiredThe image deletehashes that you want to be added to the album. The [] represents the ability to use this variable as an array.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumDeleteHash}}","add"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"172a2cdb-059e-40c8-8cb9-0f41a0e24d37"},{"name":"Add Images to an Album (Authed)","id":"b98029b6-5cc1-4a6f-b4bf-fe1db50869a2","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text"},{"key":"ids[]","value":"{{imageHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumHash}}/add","description":"

Adds the images to an album. You must specify ids[] or deletehashes[] in order to add an image to an album.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]optionalThe image ids that you want to be added to the album.
deletehashes[]optionalThe image deletehashes that you want to be added to the album.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}","add"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b98029b6-5cc1-4a6f-b4bf-fe1db50869a2"},{"name":"Remove Images from an Album (Un-Authed)","id":"8d723afd-4bed-4538-b0e7-1695ca9d78cd","request":{"method":"POST","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text"},{"key":"ids[]","value":"{{imageHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumDeleteHash}}/remove_images","description":"

Takes parameter, ids[], as an array of ids and removes from the album.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]requiredThe image ids that you want to be removed from the album.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumDeleteHash}}","remove_images"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d723afd-4bed-4538-b0e7-1695ca9d78cd"},{"name":"Remove Images from an Album (Authed)","id":"8a677ec9-6043-499e-bc63-4d9908fc9287","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"ids[]","value":"{{imageHash}}","type":"text"},{"key":"ids[]","value":"{{imageHash2}}","type":"text"}]},"url":"https://api.imgur.com/3/album/{{albumHash}}/remove_images","description":"

Takes parameter, ids[], as an array of ids and removes from the album.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
ids[]requiredThe image ids that you want to be removed from the album.
\n
","urlObject":{"protocol":"https","path":["3","album","{{albumHash}}","remove_images"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a677ec9-6043-499e-bc63-4d9908fc9287"}],"id":"3606f862-8281-48f1-b0f7-49a5f77da0e1","description":"

\"image\"

\n

There are two methods of sending the image ids, one way is by sending an array of images, this is denoted by []'s. Everywhere you see ids[], it's also an option to send a string of ids that is comma delineated. For example: ids=aaaaa,bbbbb,ccccc is the same as sending ids[]=aaaaa&ids[]=bbbbb&ids[]=ccccc.

\n","_postman_id":"3606f862-8281-48f1-b0f7-49a5f77da0e1"},{"name":"Gallery","item":[{"name":"Gallery","id":"eff60e84-5781-4c12-926a-208dc4c7cc94","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/{{section}}/{{sort}}/{{window}}/{{page}}?showViral={{showViral}}&mature={{showMature}}&album_previews={{albumPreviews}}","description":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
sectionoptionalhot | top | user. Defaults to hot
sortoptionalviral | top | time | rising (only available with user section). Defaults to viral
pageoptionalinteger - the data paging number
windowoptionalChange the date range of the request if the section is top. Accepted values are day | week | month | year | all. Defaults to day
\n
","urlObject":{"protocol":"https","path":["3","gallery","{{section}}","{{sort}}","{{window}}","{{page}}"],"host":["api","imgur","com"],"query":[{"description":{"content":"

Optional. true | false - Show or hide viral images from the user section. Defaults to true

\n","type":"text/plain"},"key":"showViral","value":"{{showViral}}"},{"description":{"content":"

Optional. true | false - Show or hide mature (nsfw) images in the response section. Defaults to false NOTE: This parameter is only required if un-authed. The response for authed users will respect their account setting.

\n","type":"text/plain"},"key":"mature","value":"{{showMature}}"},{"description":{"content":"

Optional. true | false - Include image metadata for gallery posts which are albums

\n","type":"text/plain"},"key":"album_previews","value":"{{albumPreviews}}"}],"variable":[]}},"response":[],"_postman_id":"eff60e84-5781-4c12-926a-208dc4c7cc94"},{"name":"Subreddit Galleries","id":"98f68034-15a0-4044-a9ac-5ff3dc75c6b0","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/r/{{subreddit}}/{{sort}}/{{window}}/{{page}}","description":"

View gallery images for a subreddit

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
subredditrequiredpics - A valid subreddit name
sortoptionaltime | top - defaults to time
pageoptionalinteger - the data paging number
windowoptionalChange the date range of the request if the sort is \"top\". Options are day | week | month | year | all. Defaults to week
\n
","urlObject":{"protocol":"https","path":["3","gallery","r","{{subreddit}}","{{sort}}","{{window}}","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"cd71f6e3-047c-48ba-94d3-00d66a9e515c","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}","type":"text","enabled":true,"disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/r/{{subreddit}}/{{sort}}/{{window}}/{{page}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Length","value":"3070","name":"Content-Length","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Mon, 01 May 2017 22:57:37 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"b2159d6299d2c0bb52ef626c3f8d3d30828ebc23\"","name":"ETag","description":"","enabled":true},{"key":"Fastly-Debug-Digest","value":"aceda32f97e72aaad63276f9f2425a77a38eb4627569b691716ae9d6b7fef829","name":"Fastly-Debug-Digest","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS, MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0, 0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2145-IAD, cache-sea1025-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1493679458.561282,VS0,VE119","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Mon Jan 18 2038 10:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"0ac920e771a1be71e700fdefdb22232a","key":"IMGURSESSION"},{"expires":"Mon Jan 18 2038 05:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Sun Oct 29 2017 05:19:01 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"496bdd0d6f02f181ae3fe2eaf473380f%7E2yespXiWCe7Ur6k3qf5jgS7iksNTeBC6","key":"authautologin"}],"responseTime":"334","body":"{\"data\":[{\"id\":\"QJa0R6q\",\"title\":\"Shiprock - New Mexico [OC][1080x644]\",\"description\":null,\"datetime\":1493611803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1080,\"height\":644,\"size\":86174,\"views\":149622,\"bandwidth\":12893526228,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/QJa0R6q.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":148994,\"is_album\":false},{\"id\":\"RodyQ0k\",\"title\":\"Painters Bluff, overlooking a flood stage white river. North Central Ark. [10864x3728] [OC]\",\"description\":null,\"datetime\":1493641803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":10864,\"height\":3728,\"size\":4884667,\"views\":20336,\"bandwidth\":99334588112,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/RodyQ0k.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":20291,\"is_album\":false},{\"id\":\"weKftEq\",\"title\":\"Cape Flattery, WA is quite flattering indeed. [oc] [2048x1367]\",\"description\":null,\"datetime\":1493611803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1367,\"height\":2048,\"size\":460562,\"views\":12854,\"bandwidth\":5920063948,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/weKftEq.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":12794,\"is_album\":false},{\"id\":\"EgF9TQh\",\"title\":\"Hyalite Canyon, Montana [OC] [4032x2268]\",\"description\":null,\"datetime\":1493610603,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":4032,\"height\":2268,\"size\":4082007,\"views\":10724,\"bandwidth\":43775443068,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/EgF9TQh.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":10689,\"is_album\":false},{\"id\":\"EEo6VgY\",\"title\":\"Russian Wilderness, Klamath National Forest [OC] [15045 x 5613]\",\"description\":null,\"datetime\":1493622003,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":15045,\"height\":5613,\"size\":2901059,\"views\":8271,\"bandwidth\":23994658989,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/EEo6VgY.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":8246,\"is_album\":false},{\"id\":\"lY1lDJO\",\"title\":\"Fiordland National Park, New Zealand [OC] [4032\\u00d72268]\",\"description\":null,\"datetime\":1493626279,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":3226,\"height\":1814,\"size\":875971,\"views\":8067,\"bandwidth\":7066458057,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/lY1lDJO.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":7936,\"is_album\":false},{\"id\":\"oG6w6F8\",\"title\":\"Posted this in r\\/pics first, but maybe you guys appreciate it too! [3821x2147]\",\"description\":null,\"datetime\":1493638203,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":3821,\"height\":2147,\"size\":2520309,\"views\":6374,\"bandwidth\":16064449566,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/oG6w6F8.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":6365,\"is_album\":false},{\"id\":\"O1IBlpc\",\"title\":\"Milky Way rise over the Atlantic in Avon NC [5679x3791]\",\"description\":null,\"datetime\":1493640003,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":5679,\"height\":3791,\"size\":2675943,\"views\":5105,\"bandwidth\":13660689015,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/O1IBlpc.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":4918,\"is_album\":false},{\"id\":\"pVQZLnk\",\"title\":\"Up high in the Willamette National Forest facing Cougar Creek, OR [OC] [2160x769]\",\"description\":null,\"datetime\":1493626203,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2048,\"height\":729,\"size\":72458,\"views\":4522,\"bandwidth\":327655076,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/pVQZLnk.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":4494,\"is_album\":false},{\"id\":\"WNB9Cbm\",\"title\":\"Poisoned Glen, Donegal, Ireland [OC][1600x1200]\",\"description\":null,\"datetime\":1493629802,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1600,\"height\":1200,\"size\":1030403,\"views\":4027,\"bandwidth\":4149432881,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/WNB9Cbm.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":3985,\"is_album\":false},{\"id\":\"DNZH3Z6\",\"title\":\"Sheyenne National Grasslands, North Dakota [OC] [6016x4000]\",\"description\":null,\"datetime\":1493654403,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":6016,\"height\":4000,\"size\":3124634,\"views\":3544,\"bandwidth\":11073702896,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/DNZH3Z6.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":3395,\"is_album\":false},{\"id\":\"Op1Mm35\",\"title\":\"A long day of driving and grey skies along Michigan's west coast and Upper Peninsula landed us in front a crimson sunset over Lake Superior, Silver City, MI [OC]\",\"description\":null,\"datetime\":1493640624,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":4032,\"height\":3024,\"size\":1850072,\"views\":3186,\"bandwidth\":5894329392,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/Op1Mm35.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":3178,\"is_album\":false},{\"id\":\"UvZxdQc\",\"title\":\"Blausee Kandersteg, Switzerland [3840x2160]\",\"description\":null,\"datetime\":1493629203,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":3840,\"height\":2160,\"size\":2729072,\"views\":3173,\"bandwidth\":8659345456,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/UvZxdQc.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":3132,\"is_album\":false},{\"id\":\"tQBGTi2\",\"title\":\"Bosco di Ficuzza @ Sicilia, Italia [OC] [5312x2988]\",\"description\":null,\"datetime\":1493646604,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":5312,\"height\":2988,\"size\":2101308,\"views\":2658,\"bandwidth\":5585276664,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/tQBGTi2.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":2610,\"is_album\":false},{\"id\":\"H1Gtlsd\",\"title\":\"Mount Fitz Roy, Argentina. [1920x1200]\",\"description\":null,\"datetime\":1493640003,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1920,\"height\":1200,\"size\":574354,\"views\":2443,\"bandwidth\":1403146822,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/H1Gtlsd.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":2443,\"is_album\":false},{\"id\":\"mn0Mgjn\",\"title\":\"Who Knew Bangladesh Was Beautiful? [2500x1875][OC]\",\"description\":null,\"datetime\":1493608803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2500,\"height\":1874,\"size\":2152428,\"views\":2139,\"bandwidth\":4604043492,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/mn0Mgjn.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":2135,\"is_album\":false},{\"id\":\"fjRgUXU\",\"title\":\"Wyoming's Beautiful Red Hillsides Covered in Snow[1600x1064] [OC]\",\"description\":\"View from Wyoming 28 NNW towards Lander, WY and the Wind River Reservation\",\"datetime\":1493599803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1600,\"height\":1064,\"size\":413390,\"views\":1841,\"bandwidth\":761050990,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/fjRgUXU.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":1830,\"is_album\":false},{\"id\":\"AtGAnlL\",\"title\":\"Nauyaca waterfalls, Dominical, Puntarenas, Costa Rica [OC] [4032x3024]\",\"description\":null,\"datetime\":1493662202,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1512,\"height\":2016,\"size\":807179,\"views\":2013,\"bandwidth\":1624851327,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/AtGAnlL.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":1801,\"is_album\":false},{\"id\":\"G0nc9Cw\",\"title\":\"Swiss forest [5312x2988]\",\"description\":null,\"datetime\":1493628603,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2125,\"height\":1195,\"size\":822524,\"views\":1640,\"bandwidth\":1348939360,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/G0nc9Cw.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":1640,\"is_album\":false},{\"id\":\"rWSUNa4\",\"title\":\"Such a hard walk to get here at 4600m, but worth it! Lagoon 69, Peru [OC] [3264x1836]\",\"description\":\"4600m altitude, killer hike. #Earthporn\",\"datetime\":1493671803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":3264,\"height\":1836,\"size\":1000847,\"views\":1864,\"bandwidth\":1865578808,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/rWSUNa4.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":1534,\"is_album\":false},{\"id\":\"nRb0mHU\",\"title\":\"Paro Valley, Bhutan [2500x650][OC]\",\"description\":null,\"datetime\":1493609402,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2500,\"height\":650,\"size\":813010,\"views\":1506,\"bandwidth\":1224393060,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/nRb0mHU.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":1505,\"is_album\":false},{\"id\":\"KhEVbFu\",\"title\":\"Went to \\u00c5re, Sweden, for some After Ski and took this whilst drunk (4032x2046 )\",\"description\":null,\"datetime\":1493670002,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":4032,\"height\":2046,\"size\":647324,\"views\":1100,\"bandwidth\":712056400,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/KhEVbFu.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":873,\"is_album\":false},{\"id\":\"Yo82Voc\",\"title\":\"Zhangjiajie National Park, China [1920x1200]\",\"description\":null,\"datetime\":1493593203,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1920,\"height\":1200,\"size\":995801,\"views\":406939,\"bandwidth\":405230263139,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/Yo82Voc.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":174,\"is_album\":false},{\"id\":\"XnIjxzp\",\"title\":\"Pic from this weekends storms in south eastern Illinois\",\"description\":null,\"datetime\":1493647826,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":3264,\"height\":1836,\"size\":844596,\"views\":13,\"bandwidth\":10979748,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/XnIjxzp.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":13,\"is_album\":false},{\"id\":\"uMA4I7J\",\"title\":\"Grand Canyon from Nankoweap Granary [OC] [12216 \\u00d7 3896]\",\"description\":null,\"datetime\":1493594403,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":9773,\"height\":3117,\"size\":4425163,\"views\":2013,\"bandwidth\":8907853119,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/uMA4I7J.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":0,\"is_album\":false},{\"id\":\"ZpmWhX1\",\"title\":\"Got seat-belted into a trusty helicopter as the pilot carefully flew me over the N\\u0101 Pali Coast of Kauai, Hawaii to take this shot [OC][2048x1365]\",\"description\":null,\"datetime\":1493676686,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2048,\"height\":1366,\"size\":1992394,\"views\":1891,\"bandwidth\":3767617054,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/ZpmWhX1.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":0,\"is_album\":false},{\"id\":\"wI7hn2J\",\"title\":\"West Virginia may have it's issues, but it sure is beautiful. Cabins, WV [5344x3066]\",\"description\":null,\"datetime\":1493594403,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2138,\"height\":1202,\"size\":756545,\"views\":1759,\"bandwidth\":1330762655,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/wI7hn2J.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":0,\"is_album\":false},{\"id\":\"lCutGyD\",\"title\":\"Crab Beach at the end of Cannibal Island Road, Humboldt County, CA [2000x1125] [OC]\",\"description\":null,\"datetime\":1493595603,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":2000,\"height\":1125,\"size\":474211,\"views\":3106,\"bandwidth\":1472899366,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/lCutGyD.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":0,\"is_album\":false}],\"success\":true,\"status\":200}"}],"_postman_id":"98f68034-15a0-4044-a9ac-5ff3dc75c6b0"},{"name":"Subreddit Image","id":"10456589-7167-4b5c-acd3-a1e4eb6a95ed","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/r/{{subreddit}}/{{subredditImageId}}","description":"

View a single image in the subreddit

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
subredditrequiredA valid subreddit name, ie earthporn
image_idrequiredThe ID for the image.
\n
","urlObject":{"protocol":"https","path":["3","gallery","r","{{subreddit}}","{{subredditImageId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"19c3c7cd-d07a-4b85-ac08-77d9339a0e47","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}","type":"text","enabled":true,"disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/r/{{subreddit}}/{{subredditImageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Length","value":"360","name":"Content-Length","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Mon, 01 May 2017 23:03:20 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"f0c272ef6b4c973d8ad7948ae86b5cc63ef3173a\"","name":"ETag","description":"","enabled":true},{"key":"Fastly-Debug-Digest","value":"b0310a12f20ad36bd053b94f84c6f38437ec622543e9b8152375ed0568859998","name":"Fastly-Debug-Digest","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS, MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0, 0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2146-IAD, cache-sea1025-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1493679800.815975,VS0,VE834","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Mon Jan 18 2038 06:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"0ac920e771a1be71e700fdefdb22232a","key":"IMGURSESSION"},{"expires":"Mon Jan 18 2038 01:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Sun Oct 29 2017 05:19:01 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"496bdd0d6f02f181ae3fe2eaf473380f%7E2yespXiWCe7Ur6k3qf5jgS7iksNTeBC6","key":"authautologin"}],"responseTime":"993","body":"{\"data\":{\"id\":\"QJa0R6q\",\"title\":\"Shiprock - New Mexico [OC][1080x644]\",\"description\":null,\"datetime\":1493611803,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1080,\"height\":644,\"size\":86174,\"views\":149667,\"bandwidth\":12897404058,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"EarthPorn\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":false,\"in_gallery\":false,\"link\":\"http:\\/\\/i.imgur.com\\/QJa0R6q.jpg\",\"comment_count\":null,\"ups\":null,\"downs\":null,\"points\":null,\"score\":149665,\"is_album\":false},\"success\":true,\"status\":200}"}],"_postman_id":"10456589-7167-4b5c-acd3-a1e4eb6a95ed"},{"name":"Gallery Tag","id":"0f89160b-8bb3-40c5-b17b-a02cc8a2f73d","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/t/{{tagName}}/{{sort}}/{{window}}/{{page}}","description":"

Returns tag metadata, and posts tagged with the tagName provided

\n","urlObject":{"protocol":"https","path":["3","gallery","t","{{tagName}}","{{sort}}","{{window}}","{{page}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f89160b-8bb3-40c5-b17b-a02cc8a2f73d"},{"name":"Gallery Tags","event":[{"listen":"test","script":{"type":"text/javascript","exec":["postman.setNextRequest('Image/Image Upload');","","tests[\"test test\"] = true;"]}}],"id":"fbf4474f-5944-4535-80e8-c3219da0b643","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/tags","description":"

Gets a list of default tags

\n","urlObject":{"protocol":"https","path":["3","tags"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"6868dc39-03a8-49b4-9e48-d0740afe699e","name":"default","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"max-age=600, stale-while-revalidate=600, stale-if-error=86400, public","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Fri, 07 Apr 2017 19:54:27 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"654638dca6af713e4a605743db1b1e44e57e64e8\"","name":"ETag","description":"","enabled":true},{"key":"Fastly-Debug-Digest","value":"1fdea3c3defc52d7ceb7d4b907f719afb783012504318a46a435dc407e043b58","name":"Fastly-Debug-Digest","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Backstage","value":"102","name":"X-Backstage","description":"","enabled":true},{"key":"X-Cache","value":"MISS, MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0, 0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2134-IAD, cache-sea1045-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[],"responseTime":"179","body":"{\"data\":{\"tags\":[{\"id\":\"32179\",\"name\":\"embroidery\",\"display_name\":\"embroidery\",\"followers\":0,\"total_items\":270,\"background_hash\":\"iPuYto5\"},{\"id\":\"7003\",\"name\":\"rick_and_morty\",\"display_name\":\"rick and morty\",\"followers\":61,\"total_items\":2040,\"background_hash\":\"gmFssAG\"},{\"id\":\"112\",\"name\":\"gaming\",\"display_name\":\"gaming\",\"followers\":1924,\"total_items\":116988,\"background_hash\":\"IHP8OaT\"},{\"id\":\"745\",\"name\":\"aww\",\"display_name\":\"aww\",\"followers\":163,\"total_items\":81401,\"background_hash\":\"CEN9s8K\"},{\"id\":\"1836014\",\"name\":\"science_and_tech\",\"display_name\":\"science and tech\",\"followers\":9,\"total_items\":834,\"background_hash\":\"CLrdVV6\"},{\"id\":\"1571089\",\"name\":\"air_swimming\",\"display_name\":\"air swimming\",\"followers\":0,\"total_items\":2,\"background_hash\":\"1vLtpXB\"},{\"id\":\"50086\",\"name\":\"current_events\",\"display_name\":\"current events\",\"followers\":27,\"total_items\":3813,\"background_hash\":\"Iyz9AJZ\"},{\"id\":\"1012\",\"name\":\"photography\",\"display_name\":\"photography\",\"followers\":95,\"total_items\":13811,\"background_hash\":\"JjJ7UBc\"},{\"id\":\"427\",\"name\":\"anime\",\"display_name\":\"anime\",\"followers\":1046,\"total_items\":15267,\"background_hash\":\"1O08gF2\"},{\"id\":\"1\",\"name\":\"funny\",\"display_name\":\"funny\",\"followers\":2608,\"total_items\":358356,\"background_hash\":\"5T5koLx\"},{\"id\":\"301\",\"name\":\"puppy\",\"display_name\":\"puppy\",\"followers\":84,\"total_items\":9018,\"background_hash\":\"1dQGsS9\"},{\"id\":\"181\",\"name\":\"cosplay\",\"display_name\":\"cosplay\",\"followers\":355,\"total_items\":15412,\"background_hash\":\"cZWZSmA\"},{\"id\":\"151\",\"name\":\"cats\",\"display_name\":\"cats\",\"followers\":289,\"total_items\":12751,\"background_hash\":\"qFtpv4k\"},{\"id\":\"133\",\"name\":\"memes\",\"display_name\":\"memes\",\"followers\":581,\"total_items\":230846,\"background_hash\":\"IkZeAAy\"},{\"id\":\"24034\",\"name\":\"golden_retriever\",\"display_name\":\"golden retriever\",\"followers\":9,\"total_items\":657,\"background_hash\":\"rKAbi90\"},{\"id\":\"10337\",\"name\":\"perfect_loop\",\"display_name\":\"perfect loop\",\"followers\":22,\"total_items\":1351,\"background_hash\":\"R1dEESs\"},{\"id\":\"1828820\",\"name\":\"eat_what_you_want\",\"display_name\":\"eat what you want\",\"followers\":3,\"total_items\":800,\"background_hash\":\"tvBBQUq\"},{\"id\":\"1042\",\"name\":\"minecraft\",\"display_name\":\"minecraft\",\"followers\":102,\"total_items\":14170,\"background_hash\":\"Ikykl3U\"},{\"id\":\"10723\",\"name\":\"fitness\",\"display_name\":\"fitness\",\"followers\":161,\"total_items\":2442,\"background_hash\":\"f8B0kEw\"},{\"id\":\"12427\",\"name\":\"creativity\",\"display_name\":\"creativity\",\"followers\":15,\"total_items\":2313,\"background_hash\":\"NanxezK\"},{\"id\":\"4717\",\"name\":\"nostalgia\",\"display_name\":\"nostalgia\",\"followers\":19,\"total_items\":1550,\"background_hash\":\"uEdCS9t\"},{\"id\":\"2124623\",\"name\":\"wholesome\",\"display_name\":\"wholesome\",\"followers\":5,\"total_items\":0,\"background_hash\":\"6xwDMxF\"},{\"id\":\"34\",\"name\":\"tattoo\",\"display_name\":\"tattoo\",\"followers\":121,\"total_items\":5347,\"background_hash\":\"S8izsI3\"},{\"id\":\"85\",\"name\":\"pokemon\",\"display_name\":\"pokemon\",\"followers\":329,\"total_items\":12228,\"background_hash\":\"0hNEBcR\"},{\"id\":\"2398\",\"name\":\"lego\",\"display_name\":\"lego\",\"followers\":34,\"total_items\":3182,\"background_hash\":\"oB1KOoT\"},{\"id\":\"49\",\"name\":\"diy\",\"display_name\":\"diy\",\"followers\":223,\"total_items\":6904,\"background_hash\":\"QL9pTeJ\"},{\"id\":\"25\",\"name\":\"wallpaper\",\"display_name\":\"wallpaper\",\"followers\":499,\"total_items\":8540,\"background_hash\":\"R1dEESs\"},{\"id\":\"2743\",\"name\":\"banana_for_scale\",\"display_name\":\"banana for scale\",\"followers\":7,\"total_items\":2061,\"background_hash\":\"OFLek0A\"},{\"id\":\"40\",\"name\":\"art\",\"display_name\":\"art\",\"followers\":303,\"total_items\":140374,\"background_hash\":\"f8B0kEw\"},{\"id\":\"640668\",\"name\":\"the_great_outdoors\",\"display_name\":\"the great outdoors\",\"followers\":6,\"total_items\":918,\"background_hash\":\"zU89CUx\"},{\"id\":\"103\",\"name\":\"star_wars\",\"display_name\":\"star wars\",\"followers\":285,\"total_items\":17778,\"background_hash\":\"UCUaMEu\"},{\"id\":\"814\",\"name\":\"gifs\",\"display_name\":\"gifs\",\"followers\":164,\"total_items\":3673,\"background_hash\":\"qaYq4fG\"},{\"id\":\"1024\",\"name\":\"awesome\",\"display_name\":\"awesome\",\"followers\":129,\"total_items\":29118,\"background_hash\":\"x0HXbK1\"},{\"id\":\"55060\",\"name\":\"movies_and_tv\",\"display_name\":\"movies and tv\",\"followers\":1,\"total_items\":2043,\"background_hash\":\"C0pGMbY\"},{\"id\":\"18838\",\"name\":\"storytime\",\"display_name\":\"storytime\",\"followers\":9,\"total_items\":604,\"background_hash\":\"jhE5UKO\"},{\"id\":\"50866\",\"name\":\"inspiring\",\"display_name\":\"inspiring\",\"followers\":39,\"total_items\":84811,\"background_hash\":\"mr4OtIu\"},{\"id\":\"3211\",\"name\":\"the_more_you_know\",\"display_name\":\"the more you know\",\"followers\":73,\"total_items\":3857,\"background_hash\":\"EpmW3Oy\"},{\"id\":\"55870\",\"name\":\"old_school_cool\",\"display_name\":\"old school cool\",\"followers\":0,\"total_items\":62,\"background_hash\":\"fzXe2ol\"},{\"id\":\"9907\",\"name\":\"transformation\",\"display_name\":\"transformation\",\"followers\":10,\"total_items\":204,\"background_hash\":\"hWiiySS\"}],\"featured\":\"nostalgia\",\"galleries\":[{\"id\":0,\"name\":\"Most Viral\",\"description\":\"Today's most popular posts\",\"topPost\":{\"id\":\"FimF0\",\"title\":\"sexting 101\",\"description\":null,\"datetime\":1491566570,\"cover\":\"zvqtvfh\",\"cover_width\":338,\"cover_height\":600,\"account_url\":\"svgn\",\"account_id\":24813003,\"privacy\":\"hidden\",\"layout\":\"blog\",\"views\":87615,\"link\":\"http:\\/\\/imgur.com\\/a\\/FimF0\",\"ups\":9410,\"downs\":130,\"points\":9280,\"score\":9280,\"is_album\":true,\"vote\":null,\"favorite\":null,\"nsfw\":false,\"section\":\"TrollXChromosomes\",\"comment_count\":397,\"topic\":\"No Topic\",\"topic_id\":29,\"images_count\":8,\"in_gallery\":true,\"is_ad\":false,\"tags\":[],\"in_most_viral\":true}},{\"id\":1,\"name\":\"User Submitted\",\"description\":\"Brand new posts shared in real time\",\"topPost\":{\"id\":\"q6TxQKy\",\"title\":\"Advancements in night vision technology\",\"description\":\"A Las Vegas-based company called SPI has a colour night vision sensor called the X27. The ultra-sensitive sensor is able to shoot both ordinary images during the day, as well as its colour night vision images at night. Point it up at the sky, and you\\u2019ll be able to clearly see stars and constellations.\\n\\nSource: https:\\/\\/www.youtube.com\\/watch?v=8bTgG2Ft4xQ\",\"datetime\":1491581287,\"type\":\"image\\/gif\",\"animated\":true,\"width\":720,\"height\":404,\"size\":27214090,\"views\":7927,\"bandwidth\":215726091430,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"gifs\",\"account_url\":\"TotallyNotABrownBear\",\"account_id\":38754689,\"is_ad\":false,\"tags\":[{\"name\":\"photography\",\"display_name\":\"photography\",\"followers\":95,\"total_items\":13811},{\"name\":\"science_and_tech\",\"display_name\":\"science and tech\",\"followers\":9,\"total_items\":834}],\"in_most_viral\":false,\"in_gallery\":true,\"topic\":\"No Topic\",\"topic_id\":29,\"mp4\":\"http:\\/\\/i.imgur.com\\/q6TxQKy.mp4\",\"gifv\":\"http:\\/\\/i.imgur.com\\/q6TxQKy.gifv\",\"mp4_size\":2013900,\"link\":\"http:\\/\\/i.imgur.com\\/q6TxQKyh.gif\",\"looping\":true,\"comment_count\":65,\"ups\":1349,\"downs\":4,\"points\":1345,\"score\":1348,\"is_album\":false}},{\"id\":2,\"name\":\"Random\",\"description\":\"A mix from the Imgur archives\",\"topPost\":{\"id\":\"GDaIC\",\"title\":\"Anyone know what this thing is? \",\"description\":null,\"datetime\":1302675303,\"type\":\"image\\/jpeg\",\"animated\":false,\"width\":1680,\"height\":1050,\"size\":317749,\"views\":123240,\"bandwidth\":39159386760,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"pics\",\"account_url\":null,\"account_id\":null,\"is_ad\":false,\"tags\":[],\"in_most_viral\":true,\"in_gallery\":true,\"topic\":null,\"topic_id\":0,\"link\":\"http:\\/\\/i.imgur.com\\/GDaIC.jpg\",\"comment_count\":72,\"ups\":399,\"downs\":4,\"points\":395,\"score\":456,\"is_album\":false}},{\"id\":3,\"name\":\"Staff Picks\",\"description\":\"Great posts picked by Imgur staff\",\"topPost\":{\"id\":\"PyumGeD\",\"title\":\"This made me laugh and smile.\",\"description\":null,\"datetime\":1491576109,\"type\":\"image\\/gif\",\"animated\":true,\"width\":720,\"height\":720,\"size\":34276628,\"views\":32415,\"bandwidth\":1111076896620,\"vote\":null,\"favorite\":false,\"nsfw\":false,\"section\":\"gifs\",\"account_url\":\"TheOneThatGotBanned\",\"account_id\":11170171,\"is_ad\":false,\"tags\":[{\"name\":\"funny\",\"display_name\":\"funny\",\"followers\":2608,\"total_items\":358356},{\"name\":\"aww\",\"display_name\":\"aww\",\"followers\":163,\"total_items\":81401},{\"name\":\"funny_animal\",\"display_name\":\"funny animal\",\"followers\":11,\"total_items\":717},{\"name\":\"staff_picks\",\"display_name\":\"staff picks\",\"followers\":6,\"total_items\":0}],\"in_most_viral\":true,\"in_gallery\":true,\"topic\":\"No Topic\",\"topic_id\":29,\"mp4\":\"http:\\/\\/i.imgur.com\\/PyumGeD.mp4\",\"gifv\":\"http:\\/\\/i.imgur.com\\/PyumGeD.gifv\",\"mp4_size\":1953844,\"link\":\"http:\\/\\/i.imgur.com\\/PyumGeDh.gif\",\"looping\":true,\"comment_count\":82,\"ups\":2008,\"downs\":56,\"points\":1952,\"score\":1968,\"is_album\":false}}]},\"success\":true,\"status\":200}"}],"_postman_id":"fbf4474f-5944-4535-80e8-c3219da0b643"},{"name":"Gallery Tag Info","event":[{"listen":"test","script":{"type":"text/javascript","exec":["postman.setNextRequest('Image/Image Upload');","","tests[\"test test\"] = true;"]}}],"id":"8b1276c0-d94c-4589-b070-192a6cbe9dd5","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/tag_info/{{tagName}}","description":"

Gets metadata about a tag

\n","urlObject":{"protocol":"https","path":["3","gallery","tag_info","{{tagName}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[{"id":"e7f60ce5-772c-4c41-bcdb-6699f859711e","name":"Sample Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/tag_info/{{tagName}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept-Ranges","value":"bytes","name":"Accept-Ranges","description":"","enabled":true},{"key":"Access-Control-Expose-Headers","value":"X-RateLimit-ClientLimit, X-RateLimit-ClientRemaining, X-RateLimit-UserLimit, X-RateLimit-UserRemaining, X-RateLimit-UserReset","name":"Access-Control-Expose-Headers","description":"","enabled":true},{"key":"Age","value":"0","name":"Age","description":"","enabled":true},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":"","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"","enabled":true},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"","enabled":true},{"key":"Content-Length","value":"209","name":"Content-Length","description":"","enabled":true},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","enabled":true},{"key":"Date","value":"Mon, 01 May 2017 23:07:51 GMT","name":"Date","description":"","enabled":true},{"key":"ETag","value":"W/\"5a56ce1a98501a15bf140a5153123fd2872d2660\"","name":"ETag","description":"","enabled":true},{"key":"Fastly-Debug-Digest","value":"d8d41765403e061c7588a1fe905f6349874d7cdb25d44e22d90bf2334f005d3a","name":"Fastly-Debug-Digest","description":"","enabled":true},{"key":"Server","value":"cat factory 1.0","name":"Server","description":"","enabled":true},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"","enabled":true},{"key":"X-Cache","value":"MISS, MISS","name":"X-Cache","description":"","enabled":true},{"key":"X-Cache-Hits","value":"0, 0","name":"X-Cache-Hits","description":"","enabled":true},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"","enabled":true},{"key":"X-Redux","value":"1","name":"X-Redux","description":"","enabled":true},{"key":"X-Served-By","value":"cache-iad2126-IAD, cache-sea1031-SEA","name":"X-Served-By","description":"","enabled":true},{"key":"X-Timer","value":"S1493680071.956339,VS0,VE91","name":"X-Timer","description":"","enabled":true},{"key":"access-control-allow-headers","value":"Authorization, Content-Type, Accept, X-Mashape-Authorization, IMGURPLATFORM, IMGURUIDJAFO, sessionCount, IMGURMWBETA, IMGURMWBETAOPTIN","name":"access-control-allow-headers","description":"","enabled":true},{"key":"access-control-allow-methods","value":"GET, PUT, POST, DELETE, OPTIONS","name":"access-control-allow-methods","description":"","enabled":true},{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":"","enabled":true}],"cookie":[{"expires":"Mon Jan 18 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"imgur.com","path":"/","secure":false,"value":"0ac920e771a1be71e700fdefdb22232a","key":"IMGURSESSION"},{"expires":"Sun Jan 17 2038 22:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"imgur.com","path":"/","secure":false,"value":"1","key":"_nc"},{"expires":"Sun Oct 29 2017 05:19:01 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.imgur.com","path":"/","secure":false,"value":"496bdd0d6f02f181ae3fe2eaf473380f%7E2yespXiWCe7Ur6k3qf5jgS7iksNTeBC6","key":"authautologin"}],"responseTime":"297","body":"{\"data\":{\"name\":\"the_more_you_know\",\"display_name\":\"the more you know\",\"followers\":76,\"total_items\":369594,\"following\":false,\"background_hash\":\"EpmW3Oy\",\"is_promoted\":false,\"description\":\"\",\"logo_hash\":null,\"logo_destination_url\":null,\"description_annotations\":{}},\"success\":true,\"status\":200}"}],"_postman_id":"8b1276c0-d94c-4589-b070-192a6cbe9dd5"},{"name":"Gallery Item Tags","id":"57124d89-c27d-4def-8723-483242db09ee","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/tags","description":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
idrequiredID of the gallery item
\n
","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","tags"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"57124d89-c27d-4def-8723-483242db09ee"},{"name":"Update Gallery Item Tags","id":"933424d1-e50f-4907-b1a1-d9fc4141a965","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"{{galleryHash}}","type":"text","description":"

Required. ID of the gallery item

\n"},{"key":"tags","value":"funny,cats","type":"text","description":"

Required. The name of the tags you wish to associate with a post. Can be passed as tags[]=funny&tags[]=cat or tags=funny,cat

\n"}]},"url":"https://api.imgur.com/3/gallery/tags/{{galleryHash}}","description":"

Update the tags for a post in the gallery

\n","urlObject":{"protocol":"https","path":["3","gallery","tags","{{galleryHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"933424d1-e50f-4907-b1a1-d9fc4141a965"},{"name":"Gallery Search","id":"3c981acf-47aa-488f-b068-269f65aee3ce","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/search/{{sort}}/{{window}}/{{page}}?q=cats","description":"

Search the gallery with a given query string.

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
sortoptionaltime | viral | top - defaults to time
windowoptionalChange the date range of the request if the sort is 'top', day | week | month | year | all, defaults to all.
pageoptionalinteger - the data paging number
\n

Simple Search Query Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyValue
qQuery string (note: if advanced search parameters are set, this query string is ignored). This parameter also supports boolean operators (AND, OR, NOT) and indices (tag: user: title: ext: subreddit: album: meme:). An example compound query would be 'title: cats AND dogs ext: gif'
\n

Advanced Search Query Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyValue
q_allSearch for all of these words (and)
q_anySearch for any of these words (or)
q_exactlySearch for exactly this word or phrase
q_notExclude results matching this
q_typeShow results for any file type, jpg | png | gif | anigif (animated gif) | album
q_size_pxSize ranges, small (500 pixels square or less) | med (500 to 2,000 pixels square) | big (2,000 to 5,000 pixels square) | lrg (5,000 to 10,000 pixels square) | huge (10,000 square pixels and above)
\n
","urlObject":{"protocol":"https","path":["3","gallery","search","{{sort}}","{{window}}","{{page}}"],"host":["api","imgur","com"],"query":[{"key":"q","value":"cats"}],"variable":[]}},"response":[],"_postman_id":"3c981acf-47aa-488f-b068-269f65aee3ce"},{"name":"Random Gallery Images","id":"b4a88f07-67bc-4c31-a527-fcfd9697e381","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"","description":"

DEPRECATED Returns a random set of gallery images.

\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"b4a88f07-67bc-4c31-a527-fcfd9697e381"},{"name":"Share with Community (Image)","id":"39729532-1f9f-4b56-ba26-f4ef8d757ef1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"Get this cat to the front page","type":"text","description":"

Required. The title of the image.

\n"},{"key":"topic","value":"Funny","type":"text","description":"

Optional. Topic name

\n"},{"key":"terms","value":"1","type":"text","description":"

Optional. If the user has not accepted our terms yet, this endpoint will return an error. To by-pass the terms in general simply set this value to 1.

\n"},{"key":"mature","value":"0","type":"text","description":"

Optional. If the post is mature, set this value to 1.

\n","disabled":true},{"key":"tags","value":"funny,cat","type":"text","description":"

Optional. The name of the tags you wish to associate with a post. Can be passed as tags[]=funny&tags[]=cat or tags=funny,cat

\n"}]},"url":"https://api.imgur.com/3/gallery/image/{{imageHash}}","description":"

Share an Album or Image to the Gallery.

\n","urlObject":{"protocol":"https","path":["3","gallery","image","{{imageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"39729532-1f9f-4b56-ba26-f4ef8d757ef1"},{"name":"Share with Community (Album)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Share was successful'] = res.data === true;","","postman.setNextRequest('Album / Image Voting'); // Gallery -> Album / Image Voting"]}}],"id":"b5246a97-3df0-4558-8cc7-aaf82578e457","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"Get this cat to the front page","description":"

Required. The title of the image.

\n"},{"key":"topic","value":"Funny","description":"

Optional. Topic name

\n"},{"key":"terms","value":"1","description":"

Optional. If the user has not accepted our terms yet, this endpoint will return an error. To by-pass the terms in general simply set this value to 1.

\n"},{"key":"mature","value":"0","description":"

Optional. If the post is mature, set this value to 1.

\n"},{"key":"tags","value":"funny,cat","description":"

Optional. The name of the tags you wish to associate with a post. Can be passed as tags[]=funny&tags[]=cat or tags=funny,cat

\n"}]},"url":"https://api.imgur.com/3/gallery/album/{{albumHash}}","description":"

Share an Album or Image to the Gallery.

\n","urlObject":{"protocol":"https","path":["3","gallery","album","{{albumHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5246a97-3df0-4558-8cc7-aaf82578e457"},{"name":"Remove from Gallery","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Removal was successful'] = res.data === true && res.success === true;","","postman.setNextRequest('Album Deletion (Authed)'); // Album -> Album Deletion (Authed)"]}}],"id":"7d9dea41-031e-4da5-b23b-dd910d28e5a8","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/{{galleryHash}}","description":"

Remove an image from the public gallery. You must be logged in as the owner of the item to do this action.

\n","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d9dea41-031e-4da5-b23b-dd910d28e5a8"},{"name":"Gallery Album","id":"f64e44be-8bf3-47bb-90d5-d1bf39c5e417","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/album/{{galleryHash}}","description":"

Get additional information about an album in the gallery.

\n\n","urlObject":{"protocol":"https","path":["3","gallery","album","{{galleryHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f64e44be-8bf3-47bb-90d5-d1bf39c5e417"},{"name":"Gallery Image","id":"6b97ac3f-0fbc-43d9-bb8e-47321ee6dc46","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/image/{{galleryImageHash}}","description":"

Get additional information about an image in the gallery.

\n","urlObject":{"protocol":"https","path":["3","gallery","image","{{galleryImageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b97ac3f-0fbc-43d9-bb8e-47321ee6dc46"},{"name":"Album / Image Reporting","id":"4c76b7e2-aba9-401c-bb23-65d34f4efe89","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"reason","value":"1","type":"text"}]},"url":"https://api.imgur.com/3/gallery/image/{{galleryHash}}/report","description":"

Report an Image in the gallery

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
reasonoptionalAn integer representing the reason for the report (see codes below)
\n

Report Reason Codes

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
1Doesn't belong on Imgur
2Spam
3Abusive
4Mature content not marked as mature
5Pornography
\n
","urlObject":{"protocol":"https","path":["3","gallery","image","{{galleryHash}}","report"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c76b7e2-aba9-401c-bb23-65d34f4efe89"},{"name":"Album / Image Votes","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Number of upvotes is 1'] = res.data.ups === 1; // should be 1 if running in monitor, since this is a newly created post and we just upvoted it","tests['Number of downvotes is 0'] = res.data.downs === 0;","","postman.setNextRequest('Album / Image Comment Creation'); // Gallery -> Album / Image Comment Creation"]}}],"id":"3cf3c6c4-f6d7-46be-a095-03b609f52cc2","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/votes","description":"

Get the vote information about an image

\n

Response Model: Vote

\n","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","votes"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cf3c6c4-f6d7-46be-a095-03b609f52cc2"},{"name":"Album / Image Voting","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Vote was successful'] = res.data === true && res.success === true;","","postman.setNextRequest('Album / Image Votes'); // Gallery -> Album / Image Votes"]}}],"id":"23e5f110-318a-4872-9888-1bb1f864b360","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/vote/{{vote}}","description":"

Vote for an image, up or down vote. Send veto to undo a vote.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","vote","{{vote}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"23e5f110-318a-4872-9888-1bb1f864b360"},{"name":"Album / Image Comments","event":[{"listen":"test","script":{"id":"9927be25-bddd-4214-908b-45d8fae1733d","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Comment retrieval was successful'] = res.success === true;","","tests['Returns Correct Comment ID'] = res.data[0] && res.data[0].id == postman.getEnvironmentVariable('commentId');","tests['Returns Correct Image ID'] = res.data[0] && res.data[0].image_id == postman.getEnvironmentVariable('galleryHash'); // Technically this can also be album id. We should probably specify in the response","tests['Returns Correct Comment Data'] = res.data[0] && res.data[0].comment == postman.getEnvironmentVariable('commentText');","tests['Returns Correct Author Username'] = res.data[0] && res.data[0].author == postman.getEnvironmentVariable('username');","// tests['Returns A Valid Platform'] = [\"iphone\", \"android\", \"desktop\", \"mweb\"].indexOf(res.data[0].platform) > -1;","","postman.setNextRequest('Remove from Gallery'); // Gallery -> Remove from Gallery"],"type":"text/javascript"}}],"id":"b95843d0-0036-4486-8e64-152338f88872","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/comments/{{commentSort}}","description":"

Get comments on an image or album in the gallery.

\n

galleryHash is the unique identifier of an album or image in the gallery.

\n

commentSort is one of best | top | new - defaults to best.

\n","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","comments","{{commentSort}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b95843d0-0036-4486-8e64-152338f88872"},{"name":"Album / Image Comment","event":[{"listen":"test","script":{"id":"de45bda1-078c-4d4f-be7c-604f68f4b312","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","var commentId = res.data.id;","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Comment retrieval was successful'] = res.success === true;","","tests['Returns Correct Comment ID'] = res.data.id == postman.getEnvironmentVariable('commentId');","tests['Returns Correct Image ID'] = res.data.image_id == postman.getEnvironmentVariable('galleryHash'); // Technically this can also be album id. We should probably specify in the response","tests['Returns Correct Comment Data'] = res.data.comment == postman.getEnvironmentVariable('commentText');","tests['Returns Correct Author Username'] = res.data.author == postman.getEnvironmentVariable('username');","// tests['Returns A Valid Platform'] = [\"iphone\", \"android\", \"desktop\", \"mweb\"].indexOf(res.data.platform) > -1;","","postman.setNextRequest('Album / Image Comments'); // Gallery -> Album / Image Comment"],"type":"text/javascript"}}],"id":"901a7b1d-5709-4411-9de6-9830600faa4a","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/comment/{{commentId}}","description":"

Information about a specific comment. This action also allows any of the additional actions provided in the Comment Endpoint.

\n","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","comment","{{commentId}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"901a7b1d-5709-4411-9de6-9830600faa4a"},{"name":"Album / Image Comment Creation","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","var commentId = res.data.id;","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Comment creation was successful'] = res.success === true;","","postman.setEnvironmentVariable('commentId', commentId);","","postman.setNextRequest('Album / Image Comment'); // Gallery -> Album / Image Comment"]}}],"id":"e16dbf3b-519b-45bb-9b8b-8617033ba8e4","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"comment","value":"{{commentText}}","type":"text"}]},"url":"https://api.imgur.com/3/gallery/{{galleryHash}}/comment","description":"

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredValue
commentrequiredThe text of the comment.
\n
","urlObject":{"protocol":"https","path":["3","gallery","{{galleryHash}}","comment"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e16dbf3b-519b-45bb-9b8b-8617033ba8e4"}],"id":"311b0a17-29d2-48f5-b5cd-09dcc12863f5","description":"

Due to caching limitations of Imgur, it's not possible to change the result size of the gallery resources.

\n","_postman_id":"311b0a17-29d2-48f5-b5cd-09dcc12863f5"},{"name":"Image","item":[{"name":"Image","id":"2078c7e0-c2b8-4bc8-a646-6e544b087d0f","request":{"method":"GET","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/image/{{imageHash}}","description":"

Get information about an image.

\n","urlObject":{"protocol":"https","path":["3","image","{{imageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2078c7e0-c2b8-4bc8-a646-6e544b087d0f"},{"name":"Image Upload","event":[{"listen":"prerequest","script":{"id":"2f7914a2-fa75-4479-91fe-ebb5a677eae4","exec":["pm.environment.set(\"clientId\", \"546c25a59c58ad7\");"],"type":"text/javascript"}},{"listen":"test","script":{"id":"36f8bf2d-c166-4454-b1b7-eab73472d7d0","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","var imageHash = res.data.id;","var imageDeleteHash = res.data.deletehash;","tests['Returns 7 char alphanumeric id'] = /^[a-z0-9]{7}$/i.test(imageHash);","tests['Returns 15 char alhpanumeric deletehash'] = /^[a-z0-9]{15}$/i.test(imageDeleteHash);","","postman.setEnvironmentVariable('imageHash', imageHash);","postman.setEnvironmentVariable('imageDeleteHash', imageDeleteHash);","","postman.setNextRequest('Account Images'); // Account -> Account Images"],"type":"text/javascript"}}],"id":"c85c9dfc-7487-4de2-9ecd-66f727cf3139","request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[{"key":"image","description":"

image/video

\n","type":"file","src":"/home/flakrim/Downloads/GHJQTpX.jpeg"},{"key":"type","value":"file","description":"

file, url, base64, raw

\n","type":"text"},{"key":"title","value":"Simple upload","description":"

The title of the content

\n","type":"text"},{"key":"description","value":"This is a simple image upload in Imgur","description":"

The description of the content

\n","type":"text"}]},"url":"https://api.imgur.com/3/image","description":"

Upload a new image or video.

\n

Accepted Image Formats

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
MIME Type
image/jpeg
image/jpg
image/gif
image/png
image/apng
image/tiff
\n

Accepted Video Formats

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
MIME Type
video/mp4
video/webm
video/x-matroska
video/quicktime
video/x-flv
video/x-msvideo
video/x-ms-wmv
video/mpeg
\n
","urlObject":{"protocol":"https","path":["3","image"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c85c9dfc-7487-4de2-9ecd-66f727cf3139"},{"name":"Image Deletion (Un-Authed)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var res = JSON.parse(responseBody);","","tests[\"Successful delete\"] = res.success === true;"]}}],"id":"949d6cb0-5e55-45f7-8853-8c44a108399c","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Client-ID {{clientId}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/image/{{imageDeleteHash}}","description":"

Deletes an image.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","image","{{imageDeleteHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"949d6cb0-5e55-45f7-8853-8c44a108399c"},{"name":"Image Deletion (Authed)","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// This endpoint is critical to the test flow, ","// so this stops the request cycle if any of these tests error.","postman.setNextRequest('end');","","var res = JSON.parse(responseBody);","","tests['Status code is 200'] = (responseCode.code === 200);","tests['Image deletion was successful'] = res.success === true && res.data === true;","","postman.setNextRequest('end'); // stop running tests by setting next request to an invalid name / id"]}}],"id":"ca48883b-6964-4ab8-b87f-c274e32a970d","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/image/{{imageHash}}","description":"

Deletes an image.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","image","{{imageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca48883b-6964-4ab8-b87f-c274e32a970d"},{"name":"Update Image Information","id":"7db0c13c-bf70-4e87-aecf-047abc65686d","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"Heart","type":"text"},{"key":"description","value":"This is an image of a heart outline.","type":"text"}]},"url":"https://api.imgur.com/3/image/{{imageHash}}","description":"

Updates the title or description of an image.

\n

Response Model: Basic

\n

Parameters

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
KeyRequiredDescription
titleoptionalThe title of the image.
descriptionoptionalThe description of the image.
\n
","urlObject":{"protocol":"https","path":["3","image","{{imageHash}}"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7db0c13c-bf70-4e87-aecf-047abc65686d"},{"name":"Favorite an Image","id":"5dd1c471-a806-43cb-9067-f5e4fc8f28bd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.imgur.com/3/image/{{imageHash}}/favorite","description":"

Favorite an image with the given ID. The user is required to be logged in to favorite the image.

\n

Response Model: Basic

\n","urlObject":{"protocol":"https","path":["3","image","{{imageHash}}","favorite"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5dd1c471-a806-43cb-9067-f5e4fc8f28bd"}],"id":"de179b6a-3eda-4406-a8d7-1fb06c17cb9c","_postman_id":"de179b6a-3eda-4406-a8d7-1fb06c17cb9c","description":""},{"name":"Feed","item":[{"name":"Feed","id":"70de4454-c9b6-4a97-b9bc-6e1fd28c87fa","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}"}],"url":"https://api.imgur.com/3/feed","description":"

Returns the account settings, only accessible if you're logged in as the user.

\n","urlObject":{"protocol":"https","path":["3","feed"],"host":["api","imgur","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"70de4454-c9b6-4a97-b9bc-6e1fd28c87fa"}],"id":"9f0b5aae-3cf4-41a3-b365-221679f01cf6","_postman_id":"9f0b5aae-3cf4-41a3-b365-221679f01cf6","description":""}],"event":[{"listen":"prerequest","script":{"id":"11167f08-edd2-4b0f-9561-85bcdb8bafa5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a91ccf49-75fc-4859-8eb2-280ef6d692b1","type":"text/javascript","exec":[""]}}]}