Indiegogo  Scraper avatar
Indiegogo Scraper

Pricing

Pay per usage

Go to Store
Indiegogo  Scraper

Indiegogo Scraper

Developed by

cat

Maintained by Community

💫 Scrape Indiegogo.com Campaigns

0.0 (0)

Pricing

Pay per usage

5

Monthly users

3

Runs succeeded

>99%

Last modified

4 days ago

You can access the Indiegogo Scraper programmatically from your own applications by using the Apify API. You can also 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.1",
5    "x-build-id": "TkJJ8jY1uJjDXBhPO"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jupri~indiegogo/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jupri-indiegogo",
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~indiegogo/runs": {
50      "post": {
51        "operationId": "runs-sync-jupri-indiegogo",
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~indiegogo/run-sync": {
93      "post": {
94        "operationId": "run-sync-jupri-indiegogo",
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          "search": {
135            "title": "Search",
136            "type": "string",
137            "description": ""
138          },
139          "location": {
140            "title": "Location",
141            "type": "string",
142            "description": ""
143          },
144          "category": {
145            "title": "Category",
146            "enum": [
147              "Audio",
148              "Camera Gear",
149              "Education",
150              "Energy & Green Tech",
151              "Fashion & Wearables",
152              "Food & Beverages",
153              "Health & Fitness",
154              "Home",
155              "Phones & Accessories",
156              "Productivity",
157              "Transportation",
158              "Travel & Outdoors",
159              "Art",
160              "Comics",
161              "Dance & Theater",
162              "Film",
163              "Music",
164              "Photography",
165              "Podcasts, Blogs & Vlogs",
166              "Tabletop Games",
167              "Video Games",
168              "Web Series & TV Shows",
169              "Writing & Publishing",
170              "Animal Rights",
171              "Culture",
172              "Environment",
173              "Human Rights",
174              "Local Businesses",
175              "Spirituality",
176              "Wellness"
177            ],
178            "type": "string",
179            "description": ""
180          },
181          "sort": {
182            "title": "Sorting",
183            "enum": [
184              "popular_all",
185              "new",
186              "countdown",
187              "most_funded"
188            ],
189            "type": "string",
190            "description": ""
191          },
192          "limit": {
193            "title": "Limit",
194            "type": "integer",
195            "description": "Limit number of results"
196          },
197          "dev_custom_headers": {
198            "title": "📜 HTTP HEADERS",
199            "type": "array",
200            "description": "💡 Additional HTTP Headers",
201            "items": {
202              "type": "object",
203              "required": [
204                "key",
205                "value"
206              ],
207              "properties": {
208                "key": {
209                  "type": "string",
210                  "title": "Key"
211                },
212                "value": {
213                  "type": "string",
214                  "title": "Value"
215                }
216              }
217            }
218          },
219          "dev_custom_cookies": {
220            "title": "🍰 HTTP COOKIES",
221            "type": "array",
222            "description": "💡 Additional HTTP Cookies",
223            "items": {
224              "type": "object",
225              "required": [
226                "key",
227                "value"
228              ],
229              "properties": {
230                "key": {
231                  "type": "string",
232                  "title": "Key"
233                },
234                "value": {
235                  "type": "string",
236                  "title": "Value"
237                }
238              }
239            }
240          },
241          "dev_transform_fields": {
242            "title": "♻️ CUSTOM FIELD",
243            "type": "array",
244            "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>",
245            "items": {
246              "type": "object",
247              "required": [
248                "key",
249                "value"
250              ],
251              "properties": {
252                "key": {
253                  "type": "string",
254                  "title": "Key"
255                },
256                "value": {
257                  "type": "string",
258                  "title": "Value"
259                }
260              }
261            }
262          },
263          "dev_dataset_name": {
264            "title": "📁 CUSTOM STORAGE",
265            "type": "string",
266            "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>"
267          },
268          "dev_dataset_clear": {
269            "title": "Clear Storage",
270            "type": "boolean",
271            "description": "Clear Dataset before insert/update."
272          },
273          "dev_no_strip": {
274            "title": "Disable data cleansing",
275            "type": "boolean",
276            "description": "💡 Keep/Save empty values <i><code>(NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)</code></i>"
277          }
278        }
279      },
280      "runsResponseSchema": {
281        "type": "object",
282        "properties": {
283          "data": {
284            "type": "object",
285            "properties": {
286              "id": {
287                "type": "string"
288              },
289              "actId": {
290                "type": "string"
291              },
292              "userId": {
293                "type": "string"
294              },
295              "startedAt": {
296                "type": "string",
297                "format": "date-time",
298                "example": "2025-01-08T00:00:00.000Z"
299              },
300              "finishedAt": {
301                "type": "string",
302                "format": "date-time",
303                "example": "2025-01-08T00:00:00.000Z"
304              },
305              "status": {
306                "type": "string",
307                "example": "READY"
308              },
309              "meta": {
310                "type": "object",
311                "properties": {
312                  "origin": {
313                    "type": "string",
314                    "example": "API"
315                  },
316                  "userAgent": {
317                    "type": "string"
318                  }
319                }
320              },
321              "stats": {
322                "type": "object",
323                "properties": {
324                  "inputBodyLen": {
325                    "type": "integer",
326                    "example": 2000
327                  },
328                  "rebootCount": {
329                    "type": "integer",
330                    "example": 0
331                  },
332                  "restartCount": {
333                    "type": "integer",
334                    "example": 0
335                  },
336                  "resurrectCount": {
337                    "type": "integer",
338                    "example": 0
339                  },
340                  "computeUnits": {
341                    "type": "integer",
342                    "example": 0
343                  }
344                }
345              },
346              "options": {
347                "type": "object",
348                "properties": {
349                  "build": {
350                    "type": "string",
351                    "example": "latest"
352                  },
353                  "timeoutSecs": {
354                    "type": "integer",
355                    "example": 300
356                  },
357                  "memoryMbytes": {
358                    "type": "integer",
359                    "example": 1024
360                  },
361                  "diskMbytes": {
362                    "type": "integer",
363                    "example": 2048
364                  }
365                }
366              },
367              "buildId": {
368                "type": "string"
369              },
370              "defaultKeyValueStoreId": {
371                "type": "string"
372              },
373              "defaultDatasetId": {
374                "type": "string"
375              },
376              "defaultRequestQueueId": {
377                "type": "string"
378              },
379              "buildNumber": {
380                "type": "string",
381                "example": "1.0.0"
382              },
383              "containerUrl": {
384                "type": "string"
385              },
386              "usage": {
387                "type": "object",
388                "properties": {
389                  "ACTOR_COMPUTE_UNITS": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "DATASET_READS": {
394                    "type": "integer",
395                    "example": 0
396                  },
397                  "DATASET_WRITES": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "KEY_VALUE_STORE_READS": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "KEY_VALUE_STORE_WRITES": {
406                    "type": "integer",
407                    "example": 1
408                  },
409                  "KEY_VALUE_STORE_LISTS": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "REQUEST_QUEUE_READS": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "REQUEST_QUEUE_WRITES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "DATA_TRANSFER_INTERNAL_GBYTES": {
422                    "type": "integer",
423                    "example": 0
424                  },
425                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
426                    "type": "integer",
427                    "example": 0
428                  },
429                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
430                    "type": "integer",
431                    "example": 0
432                  },
433                  "PROXY_SERPS": {
434                    "type": "integer",
435                    "example": 0
436                  }
437                }
438              },
439              "usageTotalUsd": {
440                "type": "number",
441                "example": 0.00005
442              },
443              "usageUsd": {
444                "type": "object",
445                "properties": {
446                  "ACTOR_COMPUTE_UNITS": {
447                    "type": "integer",
448                    "example": 0
449                  },
450                  "DATASET_READS": {
451                    "type": "integer",
452                    "example": 0
453                  },
454                  "DATASET_WRITES": {
455                    "type": "integer",
456                    "example": 0
457                  },
458                  "KEY_VALUE_STORE_READS": {
459                    "type": "integer",
460                    "example": 0
461                  },
462                  "KEY_VALUE_STORE_WRITES": {
463                    "type": "number",
464                    "example": 0.00005
465                  },
466                  "KEY_VALUE_STORE_LISTS": {
467                    "type": "integer",
468                    "example": 0
469                  },
470                  "REQUEST_QUEUE_READS": {
471                    "type": "integer",
472                    "example": 0
473                  },
474                  "REQUEST_QUEUE_WRITES": {
475                    "type": "integer",
476                    "example": 0
477                  },
478                  "DATA_TRANSFER_INTERNAL_GBYTES": {
479                    "type": "integer",
480                    "example": 0
481                  },
482                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
483                    "type": "integer",
484                    "example": 0
485                  },
486                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
487                    "type": "integer",
488                    "example": 0
489                  },
490                  "PROXY_SERPS": {
491                    "type": "integer",
492                    "example": 0
493                  }
494                }
495              }
496            }
497          }
498        }
499      }
500    }
501  }
502}

Indiegogo Scraper 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 Indiegogo Scraper 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:

Pricing

Pricing model

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.