SPOTIFY Explorer avatar

SPOTIFY Explorer

Try for free

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

Go to Store
SPOTIFY Explorer

SPOTIFY Explorer

jupri/spotify
Try for free

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

Scrape SPOTIFY.COM

You can access the SPOTIFY Explorer 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.1",
5    "x-build-id": "qe52f4DSdSDK1HnOl"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jupri~spotify/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jupri-spotify",
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~spotify/runs": {
50      "post": {
51        "operationId": "runs-sync-jupri-spotify",
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~spotify/run-sync": {
93      "post": {
94        "operationId": "run-sync-jupri-spotify",
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": "string",
137            "description": "Search Terms"
138          },
139          "kind": {
140            "title": "📂 Type",
141            "enum": [
142              "track",
143              "playlist",
144              "artist",
145              "album",
146              "episode",
147              "podcast",
148              "user"
149            ],
150            "type": "string",
151            "description": ""
152          },
153          "limit": {
154            "title": "♾️ Limit",
155            "type": "integer",
156            "description": "Number of results"
157          },
158          "dev_proxy_config": {
159            "title": "🌐 PROXY NETWORKING",
160            "type": "object",
161            "description": "💡 <b>Supported protocol:</b><br><br><b>HTTP(S), SOCKS5</b><br><code>{http|socks5}://{user:pass}@{hostname|ip-address}:port</code><br><br><b>Example</b>: <code>socks5://example.com:9000</code>"
162          },
163          "dev_custom_headers": {
164            "title": "📜 HTTP HEADERS",
165            "type": "array",
166            "description": "💡 Additional HTTP Headers",
167            "items": {
168              "type": "object",
169              "required": [
170                "key",
171                "value"
172              ],
173              "properties": {
174                "key": {
175                  "type": "string",
176                  "title": "Key"
177                },
178                "value": {
179                  "type": "string",
180                  "title": "Value"
181                }
182              }
183            }
184          },
185          "dev_custom_cookies": {
186            "title": "🍪 HTTP COOKIES",
187            "type": "array",
188            "description": "💡 Additional HTTP Cookies",
189            "items": {
190              "type": "object",
191              "required": [
192                "key",
193                "value"
194              ],
195              "properties": {
196                "key": {
197                  "type": "string",
198                  "title": "Key"
199                },
200                "value": {
201                  "type": "string",
202                  "title": "Value"
203                }
204              }
205            }
206          },
207          "dev_transform_fields": {
208            "title": "♻️ CUSTOM FIELD",
209            "type": "array",
210            "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>",
211            "items": {
212              "type": "object",
213              "required": [
214                "key",
215                "value"
216              ],
217              "properties": {
218                "key": {
219                  "type": "string",
220                  "title": "Key"
221                },
222                "value": {
223                  "type": "string",
224                  "title": "Value"
225                }
226              }
227            }
228          },
229          "dev_dataset_name": {
230            "title": "📁 CUSTOM STORAGE",
231            "type": "string",
232            "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>"
233          },
234          "dev_dataset_clear": {
235            "title": "Clear Storage",
236            "type": "boolean",
237            "description": "Clear Dataset before insert/update."
238          },
239          "dev_no_strip": {
240            "title": "Disable data cleansing",
241            "type": "boolean",
242            "description": "💡 Keep/Save empty values <i><code>(NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)</code></i>"
243          }
244        }
245      },
246      "runsResponseSchema": {
247        "type": "object",
248        "properties": {
249          "data": {
250            "type": "object",
251            "properties": {
252              "id": {
253                "type": "string"
254              },
255              "actId": {
256                "type": "string"
257              },
258              "userId": {
259                "type": "string"
260              },
261              "startedAt": {
262                "type": "string",
263                "format": "date-time",
264                "example": "2025-01-08T00:00:00.000Z"
265              },
266              "finishedAt": {
267                "type": "string",
268                "format": "date-time",
269                "example": "2025-01-08T00:00:00.000Z"
270              },
271              "status": {
272                "type": "string",
273                "example": "READY"
274              },
275              "meta": {
276                "type": "object",
277                "properties": {
278                  "origin": {
279                    "type": "string",
280                    "example": "API"
281                  },
282                  "userAgent": {
283                    "type": "string"
284                  }
285                }
286              },
287              "stats": {
288                "type": "object",
289                "properties": {
290                  "inputBodyLen": {
291                    "type": "integer",
292                    "example": 2000
293                  },
294                  "rebootCount": {
295                    "type": "integer",
296                    "example": 0
297                  },
298                  "restartCount": {
299                    "type": "integer",
300                    "example": 0
301                  },
302                  "resurrectCount": {
303                    "type": "integer",
304                    "example": 0
305                  },
306                  "computeUnits": {
307                    "type": "integer",
308                    "example": 0
309                  }
310                }
311              },
312              "options": {
313                "type": "object",
314                "properties": {
315                  "build": {
316                    "type": "string",
317                    "example": "latest"
318                  },
319                  "timeoutSecs": {
320                    "type": "integer",
321                    "example": 300
322                  },
323                  "memoryMbytes": {
324                    "type": "integer",
325                    "example": 1024
326                  },
327                  "diskMbytes": {
328                    "type": "integer",
329                    "example": 2048
330                  }
331                }
332              },
333              "buildId": {
334                "type": "string"
335              },
336              "defaultKeyValueStoreId": {
337                "type": "string"
338              },
339              "defaultDatasetId": {
340                "type": "string"
341              },
342              "defaultRequestQueueId": {
343                "type": "string"
344              },
345              "buildNumber": {
346                "type": "string",
347                "example": "1.0.0"
348              },
349              "containerUrl": {
350                "type": "string"
351              },
352              "usage": {
353                "type": "object",
354                "properties": {
355                  "ACTOR_COMPUTE_UNITS": {
356                    "type": "integer",
357                    "example": 0
358                  },
359                  "DATASET_READS": {
360                    "type": "integer",
361                    "example": 0
362                  },
363                  "DATASET_WRITES": {
364                    "type": "integer",
365                    "example": 0
366                  },
367                  "KEY_VALUE_STORE_READS": {
368                    "type": "integer",
369                    "example": 0
370                  },
371                  "KEY_VALUE_STORE_WRITES": {
372                    "type": "integer",
373                    "example": 1
374                  },
375                  "KEY_VALUE_STORE_LISTS": {
376                    "type": "integer",
377                    "example": 0
378                  },
379                  "REQUEST_QUEUE_READS": {
380                    "type": "integer",
381                    "example": 0
382                  },
383                  "REQUEST_QUEUE_WRITES": {
384                    "type": "integer",
385                    "example": 0
386                  },
387                  "DATA_TRANSFER_INTERNAL_GBYTES": {
388                    "type": "integer",
389                    "example": 0
390                  },
391                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
392                    "type": "integer",
393                    "example": 0
394                  },
395                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
396                    "type": "integer",
397                    "example": 0
398                  },
399                  "PROXY_SERPS": {
400                    "type": "integer",
401                    "example": 0
402                  }
403                }
404              },
405              "usageTotalUsd": {
406                "type": "number",
407                "example": 0.00005
408              },
409              "usageUsd": {
410                "type": "object",
411                "properties": {
412                  "ACTOR_COMPUTE_UNITS": {
413                    "type": "integer",
414                    "example": 0
415                  },
416                  "DATASET_READS": {
417                    "type": "integer",
418                    "example": 0
419                  },
420                  "DATASET_WRITES": {
421                    "type": "integer",
422                    "example": 0
423                  },
424                  "KEY_VALUE_STORE_READS": {
425                    "type": "integer",
426                    "example": 0
427                  },
428                  "KEY_VALUE_STORE_WRITES": {
429                    "type": "number",
430                    "example": 0.00005
431                  },
432                  "KEY_VALUE_STORE_LISTS": {
433                    "type": "integer",
434                    "example": 0
435                  },
436                  "REQUEST_QUEUE_READS": {
437                    "type": "integer",
438                    "example": 0
439                  },
440                  "REQUEST_QUEUE_WRITES": {
441                    "type": "integer",
442                    "example": 0
443                  },
444                  "DATA_TRANSFER_INTERNAL_GBYTES": {
445                    "type": "integer",
446                    "example": 0
447                  },
448                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
449                    "type": "integer",
450                    "example": 0
451                  },
452                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
453                    "type": "integer",
454                    "example": 0
455                  },
456                  "PROXY_SERPS": {
457                    "type": "integer",
458                    "example": 0
459                  }
460                }
461              }
462            }
463          }
464        }
465      }
466    }
467  }
468}

Spotify 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 SPOTIFY Explorer 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

  • 11 monthly users

  • 6 stars

  • 86% runs succeeded

  • 1.7 days response time

  • Created in Mar 2024

  • Modified 8 months ago