Binance NFT Collection Scraper avatar

Binance NFT Collection Scraper

Deprecated
Go to Store
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Binance NFT Collection Scraper

Binance NFT Collection Scraper

gabrielm/binance-nft-collection-scraper

🌐 Unlock the world of Binance NFT marketplace with our all-in-one scraper 💹 Extract rankings, explore individual collections, and access asset metadata easily. Get key metrics in your preferred cryptocurrency and fine-tune your results with extensive filtering, sorting and exporting options!!

You can access the Binance NFT Collection Scraper 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": "1.0",
5    "x-build-id": "dBOLr7JNyMlOKwXDg"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/gabrielm~binance-nft-collection-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-gabrielm-binance-nft-collection-scraper",
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/gabrielm~binance-nft-collection-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-gabrielm-binance-nft-collection-scraper",
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/gabrielm~binance-nft-collection-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-gabrielm-binance-nft-collection-scraper",
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        "required": [
134          "scraping_mode"
135        ],
136        "properties": {
137          "scraping_mode": {
138            "title": "Scraping mode",
139            "enum": [
140              "scraping_mode_specific",
141              "scraping_mode_rankings",
142              "scraping_mode_assets"
143            ],
144            "type": "string",
145            "description": "Select what type of information you want to collect",
146            "default": "scraping_mode_rankings"
147          },
148          "currency": {
149            "title": "Currency",
150            "enum": [
151              "currency_usd",
152              "currency_network",
153              "currency_bnb",
154              "currency_eth",
155              "currency_matic",
156              "currency_btc"
157            ],
158            "type": "string",
159            "description": "This is the coin/currency you want your results be converted to",
160            "default": "currency_usd"
161          },
162          "specific_id_list": {
163            "title": "Collection id(s)",
164            "maxItems": 100,
165            "uniqueItems": true,
166            "type": "array",
167            "description": "Enter one or many (up to 100) collection ids",
168            "items": {
169              "type": "string"
170            }
171          },
172          "specific_period": {
173            "title": "Period",
174            "enum": [
175              "specific_period_1h",
176              "specific_period_6h",
177              "specific_period_24h",
178              "specific_period_7d",
179              "specific_period_30d",
180              "specific_period_all"
181            ],
182            "type": "string",
183            "description": "Select which period you want to collect data from",
184            "default": "specific_period_24h"
185          },
186          "specific_include_properties": {
187            "title": "Include properties",
188            "type": "boolean",
189            "description": "Include collection properties/attributes/traits in the results?",
190            "default": false
191          },
192          "ranking_type": {
193            "title": "Ranking type",
194            "enum": [
195              "ranking_type_all",
196              "ranking_type_trending"
197            ],
198            "type": "string",
199            "description": "Select what type of ranking list you want to collect",
200            "default": "ranking_type_all"
201          },
202          "ranking_network": {
203            "title": "Network",
204            "enum": [
205              "ranking_network_all",
206              "ranking_network_bsc",
207              "ranking_network_eth",
208              "ranking_network_polygon",
209              "ranking_network_btc"
210            ],
211            "type": "string",
212            "description": "Narrow the results to a specific network",
213            "default": "ranking_network_all"
214          },
215          "ranking_max_rows": {
216            "title": "Maximum rows",
217            "minimum": 1,
218            "type": "integer",
219            "description": "How many collections to gather\n(Trending lists are not longer than 100 rows)",
220            "default": 100
221          },
222          "ranking_include_properties": {
223            "title": "Include properties",
224            "type": "boolean",
225            "description": "Include collection properties/attributes/traits in the results?",
226            "default": false
227          },
228          "ranking_include_additional_details": {
229            "title": "Include additional details",
230            "type": "boolean",
231            "description": "Include contract address? Total listed assets? Royalty fees?",
232            "default": false
233          },
234          "ranking_type_all_period": {
235            "title": "Period",
236            "enum": [
237              "ranking_type_all_period_1h",
238              "ranking_type_all_period_6h",
239              "ranking_type_all_period_24h",
240              "ranking_type_all_period_7d",
241              "ranking_type_all_period_30d",
242              "ranking_type_all_period_all"
243            ],
244            "type": "string",
245            "description": "Select which period you want to collect data from",
246            "default": "ranking_type_all_period_24h"
247          },
248          "ranking_type_all_sort_metric": {
249            "title": "Sort metric",
250            "enum": [
251              "ranking_type_all_sort_metric_volume",
252              "ranking_type_all_sort_metric_volume_rate",
253              "ranking_type_all_sort_metric_floor_price",
254              "ranking_type_all_sort_metric_floor_price_rate"
255            ],
256            "type": "string",
257            "description": "Order results by this column",
258            "default": "ranking_type_all_sort_metric_volume"
259          },
260          "ranking_type_all_sort_direction": {
261            "title": "Sort direction",
262            "enum": [
263              "ranking_type_all_sort_direction_ascending",
264              "ranking_type_all_sort_direction_descending"
265            ],
266            "type": "string",
267            "description": "",
268            "default": "ranking_type_all_sort_direction_descending"
269          },
270          "ranking_type_trending_period": {
271            "title": "Period",
272            "enum": [
273              "ranking_type_trending_period_1h",
274              "ranking_type_trending_period_6h",
275              "ranking_type_trending_period_24h",
276              "ranking_type_trending_period_7d"
277            ],
278            "type": "string",
279            "description": "Select which period you want to collect data from",
280            "default": "ranking_type_trending_period_24h"
281          },
282          "assets_collection_id": {
283            "title": "Collection id",
284            "type": "string",
285            "description": "The id of the collection to gather the assets from\nEntering none = any collection"
286          },
287          "assets_type_nft": {
288            "title": "NFT",
289            "type": "boolean",
290            "description": "",
291            "default": false
292          },
293          "assets_type_mystery_box": {
294            "title": "Mystery Box",
295            "type": "boolean",
296            "description": "",
297            "default": false
298          },
299          "assets_verification_verified": {
300            "title": "Verified",
301            "type": "boolean",
302            "description": "",
303            "default": false
304          },
305          "assets_verification_unverified": {
306            "title": "Unverified",
307            "type": "boolean",
308            "description": "",
309            "default": false
310          },
311          "assets_status_buy_now": {
312            "title": "Buy now",
313            "type": "boolean",
314            "description": "",
315            "default": false
316          },
317          "assets_status_live_auction": {
318            "title": "Live auction",
319            "type": "boolean",
320            "description": "",
321            "default": false
322          },
323          "assets_status_has_offers": {
324            "title": "Has offers",
325            "type": "boolean",
326            "description": "",
327            "default": false
328          },
329          "assets_status_coming_soon": {
330            "title": "Coming soon",
331            "type": "boolean",
332            "description": "",
333            "default": false
334          },
335          "assets_rarity_unopened": {
336            "title": "Unopened",
337            "type": "boolean",
338            "description": "",
339            "default": false
340          },
341          "assets_rarity_ssr": {
342            "title": "Super Super Rare",
343            "type": "boolean",
344            "description": "",
345            "default": false
346          },
347          "assets_rarity_sr": {
348            "title": "Super Rare",
349            "type": "boolean",
350            "description": "",
351            "default": false
352          },
353          "assets_rarity_r": {
354            "title": "Rare",
355            "type": "boolean",
356            "description": "",
357            "default": false
358          },
359          "assets_rarity_n": {
360            "title": "Normal",
361            "type": "boolean",
362            "description": "",
363            "default": false
364          },
365          "assets_network_bsc": {
366            "title": "Binance Smart Chain",
367            "type": "boolean",
368            "description": "",
369            "default": false
370          },
371          "assets_network_eth": {
372            "title": "Ethereum",
373            "type": "boolean",
374            "description": "",
375            "default": false
376          },
377          "assets_network_polygon": {
378            "title": "Polygon",
379            "type": "boolean",
380            "description": "",
381            "default": false
382          },
383          "assets_network_btc": {
384            "title": "Bitcoin",
385            "type": "boolean",
386            "description": "",
387            "default": false
388          },
389          "assets_sort_metric": {
390            "title": "Sort metric",
391            "enum": [
392              "assets_sort_metric_date_of_listing",
393              "assets_sort_metric_date_of_sale_end",
394              "assets_sort_metric_date_of_creation",
395              "assets_sort_metric_price",
396              "assets_sort_metric_favorites",
397              "assets_sort_metric_score",
398              "assets_sort_metric_open_rarity"
399            ],
400            "type": "string",
401            "description": "Order results by this column",
402            "default": "assets_sort_metric_price"
403          },
404          "assets_sort_direction": {
405            "title": "Sort direction",
406            "enum": [
407              "assets_sort_direction_ascending",
408              "assets_sort_direction_descending"
409            ],
410            "type": "string",
411            "description": "",
412            "default": "assets_sort_direction_ascending"
413          },
414          "assets_max_rows": {
415            "title": "Maximum rows",
416            "minimum": 1,
417            "type": "integer",
418            "description": "How many assets to gather",
419            "default": 30
420          },
421          "assets_include_additional_details": {
422            "title": "Include additional details",
423            "type": "boolean",
424            "description": "Include Categories? Properties? Creator/Owner? Fees? Bids? Offers?",
425            "default": false
426          },
427          "adv_max_threads": {
428            "title": "🕷️ Maximum number of threads",
429            "minimum": 1,
430            "maximum": 30,
431            "type": "integer",
432            "description": "Limits the number of simultaneous scrapers\n(1-30, 1 = minimal CPU/RAM usage)",
433            "default": 10
434          },
435          "adv_request_timeout": {
436            "title": "⏱️ Request timeout",
437            "minimum": 1,
438            "type": "integer",
439            "description": "Individual request timeout, in seconds",
440            "default": 30
441          },
442          "adv_request_retries": {
443            "title": "🔄 Request retries",
444            "minimum": 0,
445            "maximum": 9,
446            "type": "integer",
447            "description": "How many times to retry a request if it fails\n(0-9, zero = never)",
448            "default": 3
449          },
450          "adv_request_cooldown": {
451            "title": "🔥 Request cooldown",
452            "minimum": 0,
453            "maximum": 10,
454            "type": "integer",
455            "description": "Interval before retrying a failed request,\nin seconds (0-10, zero = immediate)",
456            "default": 1
457          },
458          "adv_proxy_usage": {
459            "title": "🕵🏻 Proxy usage",
460            "type": "object",
461            "description": "Proxies used to anonymize your requests\n(⚠️ using none is discouraged ⚠️)"
462          },
463          "adv_dataset_optimization": {
464            "title": "🗜️ Dataset optimization",
465            "type": "boolean",
466            "description": "Simplifies elements for a better layout\n(⚠️ best for spreadsheet-like view ⚠️)",
467            "default": true
468          },
469          "adv_dataset_cleanse": {
470            "title": "🧹 Dataset cleanse",
471            "type": "boolean",
472            "description": "Removes probably useless results\n(⚠️ see Information for details ⚠️)",
473            "default": false
474          },
475          "adv_show_warnings": {
476            "title": "💬 Show warnings",
477            "type": "boolean",
478            "description": "Includes non-critical messages in the log\n(⚠️ for advanced users ⚠️)",
479            "default": false
480          },
481          "adv_allow_incompletion": {
482            "title": "🧩 Allow incompletion",
483            "type": "boolean",
484            "description": "Keeps running on skippable errors\n(⚠️ for advanced users ⚠️)",
485            "default": true
486          }
487        }
488      },
489      "runsResponseSchema": {
490        "type": "object",
491        "properties": {
492          "data": {
493            "type": "object",
494            "properties": {
495              "id": {
496                "type": "string"
497              },
498              "actId": {
499                "type": "string"
500              },
501              "userId": {
502                "type": "string"
503              },
504              "startedAt": {
505                "type": "string",
506                "format": "date-time",
507                "example": "2025-01-08T00:00:00.000Z"
508              },
509              "finishedAt": {
510                "type": "string",
511                "format": "date-time",
512                "example": "2025-01-08T00:00:00.000Z"
513              },
514              "status": {
515                "type": "string",
516                "example": "READY"
517              },
518              "meta": {
519                "type": "object",
520                "properties": {
521                  "origin": {
522                    "type": "string",
523                    "example": "API"
524                  },
525                  "userAgent": {
526                    "type": "string"
527                  }
528                }
529              },
530              "stats": {
531                "type": "object",
532                "properties": {
533                  "inputBodyLen": {
534                    "type": "integer",
535                    "example": 2000
536                  },
537                  "rebootCount": {
538                    "type": "integer",
539                    "example": 0
540                  },
541                  "restartCount": {
542                    "type": "integer",
543                    "example": 0
544                  },
545                  "resurrectCount": {
546                    "type": "integer",
547                    "example": 0
548                  },
549                  "computeUnits": {
550                    "type": "integer",
551                    "example": 0
552                  }
553                }
554              },
555              "options": {
556                "type": "object",
557                "properties": {
558                  "build": {
559                    "type": "string",
560                    "example": "latest"
561                  },
562                  "timeoutSecs": {
563                    "type": "integer",
564                    "example": 300
565                  },
566                  "memoryMbytes": {
567                    "type": "integer",
568                    "example": 1024
569                  },
570                  "diskMbytes": {
571                    "type": "integer",
572                    "example": 2048
573                  }
574                }
575              },
576              "buildId": {
577                "type": "string"
578              },
579              "defaultKeyValueStoreId": {
580                "type": "string"
581              },
582              "defaultDatasetId": {
583                "type": "string"
584              },
585              "defaultRequestQueueId": {
586                "type": "string"
587              },
588              "buildNumber": {
589                "type": "string",
590                "example": "1.0.0"
591              },
592              "containerUrl": {
593                "type": "string"
594              },
595              "usage": {
596                "type": "object",
597                "properties": {
598                  "ACTOR_COMPUTE_UNITS": {
599                    "type": "integer",
600                    "example": 0
601                  },
602                  "DATASET_READS": {
603                    "type": "integer",
604                    "example": 0
605                  },
606                  "DATASET_WRITES": {
607                    "type": "integer",
608                    "example": 0
609                  },
610                  "KEY_VALUE_STORE_READS": {
611                    "type": "integer",
612                    "example": 0
613                  },
614                  "KEY_VALUE_STORE_WRITES": {
615                    "type": "integer",
616                    "example": 1
617                  },
618                  "KEY_VALUE_STORE_LISTS": {
619                    "type": "integer",
620                    "example": 0
621                  },
622                  "REQUEST_QUEUE_READS": {
623                    "type": "integer",
624                    "example": 0
625                  },
626                  "REQUEST_QUEUE_WRITES": {
627                    "type": "integer",
628                    "example": 0
629                  },
630                  "DATA_TRANSFER_INTERNAL_GBYTES": {
631                    "type": "integer",
632                    "example": 0
633                  },
634                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
635                    "type": "integer",
636                    "example": 0
637                  },
638                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
639                    "type": "integer",
640                    "example": 0
641                  },
642                  "PROXY_SERPS": {
643                    "type": "integer",
644                    "example": 0
645                  }
646                }
647              },
648              "usageTotalUsd": {
649                "type": "number",
650                "example": 0.00005
651              },
652              "usageUsd": {
653                "type": "object",
654                "properties": {
655                  "ACTOR_COMPUTE_UNITS": {
656                    "type": "integer",
657                    "example": 0
658                  },
659                  "DATASET_READS": {
660                    "type": "integer",
661                    "example": 0
662                  },
663                  "DATASET_WRITES": {
664                    "type": "integer",
665                    "example": 0
666                  },
667                  "KEY_VALUE_STORE_READS": {
668                    "type": "integer",
669                    "example": 0
670                  },
671                  "KEY_VALUE_STORE_WRITES": {
672                    "type": "number",
673                    "example": 0.00005
674                  },
675                  "KEY_VALUE_STORE_LISTS": {
676                    "type": "integer",
677                    "example": 0
678                  },
679                  "REQUEST_QUEUE_READS": {
680                    "type": "integer",
681                    "example": 0
682                  },
683                  "REQUEST_QUEUE_WRITES": {
684                    "type": "integer",
685                    "example": 0
686                  },
687                  "DATA_TRANSFER_INTERNAL_GBYTES": {
688                    "type": "integer",
689                    "example": 0
690                  },
691                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
692                    "type": "integer",
693                    "example": 0
694                  },
695                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
696                    "type": "integer",
697                    "example": 0
698                  },
699                  "PROXY_SERPS": {
700                    "type": "integer",
701                    "example": 0
702                  }
703                }
704              }
705            }
706          }
707        }
708      }
709    }
710  }
711}

Binance NFT Collection 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 Binance NFT Collection 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:

Developer
Maintained by Community
Categories