Reddit  Explorer 3.0 avatar

Reddit Explorer 3.0

Try for free

7 days trial then $30.00/month - No credit card required now

Go to Store
Reddit  Explorer 3.0

Reddit Explorer 3.0

jupri/reddit
Try for free

7 days trial then $30.00/month - No credit card required now

πŸ’« Scrape Reddit.com ⬛πŸŸͺ🟦🟩🟨🟧πŸŸ₯🟫

You can access the Reddit Explorer 3.0 programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.2",
5    "x-build-id": "Q47NMcsqIKRi5s9Pa"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jupri~reddit/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jupri-reddit",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/jupri~reddit/runs": {
50      "post": {
51        "operationId": "runs-sync-jupri-reddit",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/jupri~reddit/run-sync": {
93      "post": {
94        "operationId": "run-sync-jupri-reddit",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "properties": {
134          "query": {
135            "title": "❓ Query",
136            "type": "array",
137            "description": "πŸ’‘ <b> Query, Search Terms or URL",
138            "items": {
139              "type": "string"
140            }
141          },
142          "filters.mode": {
143            "title": "πŸ“‚ Mode",
144            "enum": [
145              "posts",
146              "communities",
147              "comments",
148              "media",
149              "people"
150            ],
151            "type": "string",
152            "description": "πŸ’‘ Search Products"
153          },
154          "limit": {
155            "title": "♾️ Limit",
156            "type": "integer",
157            "description": "πŸ’‘ Number of results (per query)"
158          },
159          "filters.types": {
160            "title": "πŸ“ Post Types",
161            "type": "array",
162            "description": "πŸ’‘ For <b>posts</b> search <i><code>(mode=posts)</code></i>",
163            "items": {
164              "type": "string",
165              "enum": [
166                "text",
167                "image",
168                "video",
169                "gif",
170                "link",
171                "poll"
172              ],
173              "enumTitles": [
174                "Text",
175                "Image",
176                "Video",
177                "GIF",
178                "Link",
179                "Poll"
180              ]
181            }
182          },
183          "filters.sort": {
184            "title": "πŸ“Ά Sorting",
185            "enum": [
186              "RELEVANCE",
187              "HOT",
188              "NEW",
189              "TOP",
190              "COMMENTS",
191              "CONTROVERSIAL"
192            ],
193            "type": "string",
194            "description": ""
195          },
196          "filters.timing": {
197            "title": "πŸ•’ Timing",
198            "enum": [
199              "all",
200              "year",
201              "month",
202              "week",
203              "day",
204              "hour"
205            ],
206            "type": "string",
207            "description": ""
208          },
209          "filters.safe": {
210            "title": "Exclude",
211            "type": "boolean",
212            "description": "πŸ’‘ Exclude NSFW contents"
213          },
214          "filters.title": {
215            "title": "🏷️ Title",
216            "type": "string",
217            "description": "πŸ’‘ The submission title"
218          },
219          "filters.text": {
220            "title": "πŸ“ Text",
221            "type": "string",
222            "description": "πŸ’‘ The body of the post"
223          },
224          "filters.author": {
225            "title": "✍️ Author",
226            "type": "string",
227            "description": "πŸ’‘ The user(s) who submitted the post, separated by space, without /u prefix<br><b>example:</b> <code>\"elonmusk billgates\"</code>"
228          },
229          "filters.subreddit": {
230            "title": "πŸ’¬ Subreddit",
231            "type": "string",
232            "description": "πŸ’‘ The submission's subreddit(s) separated by space, without /r prefix<br><b>example:</b> <code>\"Python JavaScript\"</code>"
233          },
234          "filters.flair": {
235            "title": "❄️ Flair",
236            "type": "string",
237            "description": "πŸ’‘ The text of the link flair(s) on the post<br><b>example:</b> <code>\"webscraping\"</code>"
238          },
239          "filters.site": {
240            "title": "🌐 Site",
241            "type": "string",
242            "description": "πŸ’‘ The domain(s) of the submitted URL<br><b>example:</b> <code>\"youtube.com\"</code>"
243          },
244          "filters.url": {
245            "title": "πŸ”— URL",
246            "type": "string",
247            "description": "πŸ’‘ The submission's URL (the website's address)"
248          },
249          "dev_custom_headers": {
250            "title": "πŸ“œ HTTP HEADERS",
251            "type": "array",
252            "description": "πŸ’‘ Additional HTTP Headers",
253            "items": {
254              "type": "object",
255              "required": [
256                "key",
257                "value"
258              ],
259              "properties": {
260                "key": {
261                  "type": "string",
262                  "title": "Key"
263                },
264                "value": {
265                  "type": "string",
266                  "title": "Value"
267                }
268              }
269            }
270          },
271          "dev_custom_cookies": {
272            "title": "🍰 HTTP COOKIES",
273            "type": "array",
274            "description": "πŸ’‘ Additional HTTP Cookies",
275            "items": {
276              "type": "object",
277              "required": [
278                "key",
279                "value"
280              ],
281              "properties": {
282                "key": {
283                  "type": "string",
284                  "title": "Key"
285                },
286                "value": {
287                  "type": "string",
288                  "title": "Value"
289                }
290              }
291            }
292          },
293          "dev_transform_fields": {
294            "title": "♻️ CUSTOM FIELD",
295            "type": "array",
296            "description": "πŸ’‘ <b>Transform the resulting output. Select only needed fields.</b><br><br>For nested object use <b>DOT</b>. For example: <pre>address.streetAddress</pre><br>For nested array use <b>NUMBER</b> <i>(index of array element starting from index=0)</i>. For example: <pre>images.0.url</pre>",
297            "items": {
298              "type": "object",
299              "required": [
300                "key",
301                "value"
302              ],
303              "properties": {
304                "key": {
305                  "type": "string",
306                  "title": "Key"
307                },
308                "value": {
309                  "type": "string",
310                  "title": "Value"
311                }
312              }
313            }
314          },
315          "dev_dataset_name": {
316            "title": "πŸ“ CUSTOM STORAGE",
317            "type": "string",
318            "description": "πŸ’‘ <b>Save results into custom named Dataset, use mask to customize dataset name</b><br><br><code>{ACTOR} = actor name<br>{DATE} = date (YYYYMMDD)<br>{TIME} = time (HHMMSS)</code><br><br>This masks can be used to autogenerate Dataset Name.<br><br>example: <i><code>data-{DATE}</code></i><br>Depending on today date the dataset name will be: <code>data-20230603</code><i><br><br>default: <code>data-{ACTOR}-{DATE}-{TIME}</code></i>"
319          },
320          "dev_dataset_clear": {
321            "title": "Clear Storage",
322            "type": "boolean",
323            "description": "Clear Dataset before insert/update."
324          },
325          "dev_no_strip": {
326            "title": "Disable data cleansing",
327            "type": "boolean",
328            "description": "πŸ’‘ Keep/Save empty values <i><code>(NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)</code></i>"
329          }
330        }
331      },
332      "runsResponseSchema": {
333        "type": "object",
334        "properties": {
335          "data": {
336            "type": "object",
337            "properties": {
338              "id": {
339                "type": "string"
340              },
341              "actId": {
342                "type": "string"
343              },
344              "userId": {
345                "type": "string"
346              },
347              "startedAt": {
348                "type": "string",
349                "format": "date-time",
350                "example": "2025-01-08T00:00:00.000Z"
351              },
352              "finishedAt": {
353                "type": "string",
354                "format": "date-time",
355                "example": "2025-01-08T00:00:00.000Z"
356              },
357              "status": {
358                "type": "string",
359                "example": "READY"
360              },
361              "meta": {
362                "type": "object",
363                "properties": {
364                  "origin": {
365                    "type": "string",
366                    "example": "API"
367                  },
368                  "userAgent": {
369                    "type": "string"
370                  }
371                }
372              },
373              "stats": {
374                "type": "object",
375                "properties": {
376                  "inputBodyLen": {
377                    "type": "integer",
378                    "example": 2000
379                  },
380                  "rebootCount": {
381                    "type": "integer",
382                    "example": 0
383                  },
384                  "restartCount": {
385                    "type": "integer",
386                    "example": 0
387                  },
388                  "resurrectCount": {
389                    "type": "integer",
390                    "example": 0
391                  },
392                  "computeUnits": {
393                    "type": "integer",
394                    "example": 0
395                  }
396                }
397              },
398              "options": {
399                "type": "object",
400                "properties": {
401                  "build": {
402                    "type": "string",
403                    "example": "latest"
404                  },
405                  "timeoutSecs": {
406                    "type": "integer",
407                    "example": 300
408                  },
409                  "memoryMbytes": {
410                    "type": "integer",
411                    "example": 1024
412                  },
413                  "diskMbytes": {
414                    "type": "integer",
415                    "example": 2048
416                  }
417                }
418              },
419              "buildId": {
420                "type": "string"
421              },
422              "defaultKeyValueStoreId": {
423                "type": "string"
424              },
425              "defaultDatasetId": {
426                "type": "string"
427              },
428              "defaultRequestQueueId": {
429                "type": "string"
430              },
431              "buildNumber": {
432                "type": "string",
433                "example": "1.0.0"
434              },
435              "containerUrl": {
436                "type": "string"
437              },
438              "usage": {
439                "type": "object",
440                "properties": {
441                  "ACTOR_COMPUTE_UNITS": {
442                    "type": "integer",
443                    "example": 0
444                  },
445                  "DATASET_READS": {
446                    "type": "integer",
447                    "example": 0
448                  },
449                  "DATASET_WRITES": {
450                    "type": "integer",
451                    "example": 0
452                  },
453                  "KEY_VALUE_STORE_READS": {
454                    "type": "integer",
455                    "example": 0
456                  },
457                  "KEY_VALUE_STORE_WRITES": {
458                    "type": "integer",
459                    "example": 1
460                  },
461                  "KEY_VALUE_STORE_LISTS": {
462                    "type": "integer",
463                    "example": 0
464                  },
465                  "REQUEST_QUEUE_READS": {
466                    "type": "integer",
467                    "example": 0
468                  },
469                  "REQUEST_QUEUE_WRITES": {
470                    "type": "integer",
471                    "example": 0
472                  },
473                  "DATA_TRANSFER_INTERNAL_GBYTES": {
474                    "type": "integer",
475                    "example": 0
476                  },
477                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
478                    "type": "integer",
479                    "example": 0
480                  },
481                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
482                    "type": "integer",
483                    "example": 0
484                  },
485                  "PROXY_SERPS": {
486                    "type": "integer",
487                    "example": 0
488                  }
489                }
490              },
491              "usageTotalUsd": {
492                "type": "number",
493                "example": 0.00005
494              },
495              "usageUsd": {
496                "type": "object",
497                "properties": {
498                  "ACTOR_COMPUTE_UNITS": {
499                    "type": "integer",
500                    "example": 0
501                  },
502                  "DATASET_READS": {
503                    "type": "integer",
504                    "example": 0
505                  },
506                  "DATASET_WRITES": {
507                    "type": "integer",
508                    "example": 0
509                  },
510                  "KEY_VALUE_STORE_READS": {
511                    "type": "integer",
512                    "example": 0
513                  },
514                  "KEY_VALUE_STORE_WRITES": {
515                    "type": "number",
516                    "example": 0.00005
517                  },
518                  "KEY_VALUE_STORE_LISTS": {
519                    "type": "integer",
520                    "example": 0
521                  },
522                  "REQUEST_QUEUE_READS": {
523                    "type": "integer",
524                    "example": 0
525                  },
526                  "REQUEST_QUEUE_WRITES": {
527                    "type": "integer",
528                    "example": 0
529                  },
530                  "DATA_TRANSFER_INTERNAL_GBYTES": {
531                    "type": "integer",
532                    "example": 0
533                  },
534                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
535                    "type": "integer",
536                    "example": 0
537                  },
538                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
539                    "type": "integer",
540                    "example": 0
541                  },
542                  "PROXY_SERPS": {
543                    "type": "integer",
544                    "example": 0
545                  }
546                }
547              }
548            }
549          }
550        }
551      }
552    }
553  }
554}

Reddit Explorer 3.0 OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Reddit Explorer 3.0 from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Developer
Maintained by Community

Actor Metrics

  • 9 monthly users

  • 5 bookmarks

  • 98% runs succeeded

  • 6.1 days response time

  • Created in Aug 2023

  • Modified 2 days ago