GMGN Trending Scraper avatar
GMGN Trending Scraper

Pricing

Pay per event

Go to Store
GMGN Trending Scraper

GMGN Trending Scraper

Developed by

Muhammet Akkurt

Maintained by Community

GMGN Trending Tokens Scraper extracts real-time data from GMGN.ai trending crypto tokens across Ethereum, BSC, Base, Solana, Blast, and Tron networks. Track transactions, liquidity, price changes and risk metrics with customizable filters for effective market analysis and investment research.

5.0 (1)

Pricing

Pay per event

2

Monthly users

11

Runs succeeded

>99%

Last modified

15 days ago

You can access the GMGN Trending 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.0",
5    "x-build-id": "PtmWToSavAKt35UKE"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/muhammetakkurtt~gmgn-trending-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-muhammetakkurtt-gmgn-trending-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/muhammetakkurtt~gmgn-trending-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-muhammetakkurtt-gmgn-trending-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/muhammetakkurtt~gmgn-trending-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-muhammetakkurtt-gmgn-trending-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          "chain"
135        ],
136        "properties": {
137          "chain": {
138            "title": "Blockchain Network",
139            "enum": [
140              "bsc",
141              "eth",
142              "base",
143              "sol",
144              "blast",
145              "tron"
146            ],
147            "type": "string",
148            "description": "Blockchain network to scan",
149            "default": "sol"
150          },
151          "timeRange": {
152            "title": "Time Period",
153            "enum": [
154              "1m",
155              "5m",
156              "1h",
157              "6h",
158              "24h"
159            ],
160            "type": "string",
161            "description": "Time period for trending data",
162            "default": "1h"
163          },
164          "sortBy": {
165            "title": "Order By",
166            "enum": [
167              "swaps",
168              "open_timestamp",
169              "liquidity",
170              "marketcap",
171              "bluechip_owner_percentage",
172              "holder_count",
173              "smart_degen_count",
174              "renowned_count",
175              "volume",
176              "price",
177              "change1m",
178              "change5m",
179              "change1h"
180            ],
181            "type": "string",
182            "description": "Criteria to order the results",
183            "default": "swaps"
184          },
185          "sortDirection": {
186            "title": "Sort Direction",
187            "enum": [
188              "desc",
189              "asc"
190            ],
191            "type": "string",
192            "description": "Direction to sort the results",
193            "default": "desc"
194          },
195          "tokenMaxAge": {
196            "title": "Token Age",
197            "enum": [
198              "10m",
199              "30m",
200              "1h",
201              "3h",
202              "6h",
203              "12h",
204              "24h"
205            ],
206            "type": "string",
207            "description": "Maximum age of tokens to include"
208          },
209          "liquidityMin": {
210            "title": "Minimum Liquidity",
211            "enum": [
212              "10000",
213              "100000",
214              "300000"
215            ],
216            "type": "string",
217            "description": "Minimum liquidity of tokens to include"
218          },
219          "marketCapMin": {
220            "title": "Minimum Market Cap",
221            "enum": [
222              "50000",
223              "100000",
224              "500000"
225            ],
226            "type": "string",
227            "description": "Minimum market cap of tokens to include"
228          },
229          "holderCountMin": {
230            "title": "Minimum Holder Count",
231            "enum": [
232              "100",
233              "500",
234              "1000"
235            ],
236            "type": "string",
237            "description": "Minimum number of holders for tokens to include"
238          },
239          "transactionsMin": {
240            "title": "Minimum Transactions",
241            "enum": [
242              "200",
243              "500",
244              "1000"
245            ],
246            "type": "string",
247            "description": "Minimum number of transactions for tokens to include"
248          },
249          "volumeMin": {
250            "title": "Minimum Volume",
251            "enum": [
252              "50000",
253              "100000",
254              "500000"
255            ],
256            "type": "string",
257            "description": "Minimum trading volume for tokens to include"
258          },
259          "tokenFilters": {
260            "title": "Token Filters",
261            "uniqueItems": true,
262            "type": "array",
263            "description": "Special filters for tokens (select multiple)",
264            "items": {
265              "type": "string",
266              "enum": [
267                "renounced",
268                "frozen",
269                "burn",
270                "distribed",
271                "all",
272                "not_wash_trading",
273                "has_social"
274              ],
275              "enumTitles": [
276                "No Mint",
277                "Blacklist",
278                "Burnt",
279                "Top 10",
280                "All",
281                "No Wash Trading",
282                "With at least 1 social"
283              ]
284            }
285          },
286          "developerFilters": {
287            "title": "DEV Filters",
288            "uniqueItems": true,
289            "type": "array",
290            "description": "Dev related filters (select multiple)",
291            "items": {
292              "type": "string",
293              "enum": [
294                "dev_all",
295                "creator_hold",
296                "creator_close",
297                "token_burnt"
298              ],
299              "enumTitles": [
300                "All",
301                "Dev hasn't sold yet",
302                "Dev Sell All",
303                "DEV Burnt"
304              ]
305            }
306          },
307          "proxyConfiguration": {
308            "title": "Proxy Configuration",
309            "type": "object",
310            "description": "Using a proxy is recommended for faster and more reliable results",
311            "default": {
312              "useApifyProxy": true,
313              "apifyProxyGroups": []
314            }
315          }
316        }
317      },
318      "runsResponseSchema": {
319        "type": "object",
320        "properties": {
321          "data": {
322            "type": "object",
323            "properties": {
324              "id": {
325                "type": "string"
326              },
327              "actId": {
328                "type": "string"
329              },
330              "userId": {
331                "type": "string"
332              },
333              "startedAt": {
334                "type": "string",
335                "format": "date-time",
336                "example": "2025-01-08T00:00:00.000Z"
337              },
338              "finishedAt": {
339                "type": "string",
340                "format": "date-time",
341                "example": "2025-01-08T00:00:00.000Z"
342              },
343              "status": {
344                "type": "string",
345                "example": "READY"
346              },
347              "meta": {
348                "type": "object",
349                "properties": {
350                  "origin": {
351                    "type": "string",
352                    "example": "API"
353                  },
354                  "userAgent": {
355                    "type": "string"
356                  }
357                }
358              },
359              "stats": {
360                "type": "object",
361                "properties": {
362                  "inputBodyLen": {
363                    "type": "integer",
364                    "example": 2000
365                  },
366                  "rebootCount": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "restartCount": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "resurrectCount": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "computeUnits": {
379                    "type": "integer",
380                    "example": 0
381                  }
382                }
383              },
384              "options": {
385                "type": "object",
386                "properties": {
387                  "build": {
388                    "type": "string",
389                    "example": "latest"
390                  },
391                  "timeoutSecs": {
392                    "type": "integer",
393                    "example": 300
394                  },
395                  "memoryMbytes": {
396                    "type": "integer",
397                    "example": 1024
398                  },
399                  "diskMbytes": {
400                    "type": "integer",
401                    "example": 2048
402                  }
403                }
404              },
405              "buildId": {
406                "type": "string"
407              },
408              "defaultKeyValueStoreId": {
409                "type": "string"
410              },
411              "defaultDatasetId": {
412                "type": "string"
413              },
414              "defaultRequestQueueId": {
415                "type": "string"
416              },
417              "buildNumber": {
418                "type": "string",
419                "example": "1.0.0"
420              },
421              "containerUrl": {
422                "type": "string"
423              },
424              "usage": {
425                "type": "object",
426                "properties": {
427                  "ACTOR_COMPUTE_UNITS": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "DATASET_READS": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "DATASET_WRITES": {
436                    "type": "integer",
437                    "example": 0
438                  },
439                  "KEY_VALUE_STORE_READS": {
440                    "type": "integer",
441                    "example": 0
442                  },
443                  "KEY_VALUE_STORE_WRITES": {
444                    "type": "integer",
445                    "example": 1
446                  },
447                  "KEY_VALUE_STORE_LISTS": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "REQUEST_QUEUE_READS": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "REQUEST_QUEUE_WRITES": {
456                    "type": "integer",
457                    "example": 0
458                  },
459                  "DATA_TRANSFER_INTERNAL_GBYTES": {
460                    "type": "integer",
461                    "example": 0
462                  },
463                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
464                    "type": "integer",
465                    "example": 0
466                  },
467                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
468                    "type": "integer",
469                    "example": 0
470                  },
471                  "PROXY_SERPS": {
472                    "type": "integer",
473                    "example": 0
474                  }
475                }
476              },
477              "usageTotalUsd": {
478                "type": "number",
479                "example": 0.00005
480              },
481              "usageUsd": {
482                "type": "object",
483                "properties": {
484                  "ACTOR_COMPUTE_UNITS": {
485                    "type": "integer",
486                    "example": 0
487                  },
488                  "DATASET_READS": {
489                    "type": "integer",
490                    "example": 0
491                  },
492                  "DATASET_WRITES": {
493                    "type": "integer",
494                    "example": 0
495                  },
496                  "KEY_VALUE_STORE_READS": {
497                    "type": "integer",
498                    "example": 0
499                  },
500                  "KEY_VALUE_STORE_WRITES": {
501                    "type": "number",
502                    "example": 0.00005
503                  },
504                  "KEY_VALUE_STORE_LISTS": {
505                    "type": "integer",
506                    "example": 0
507                  },
508                  "REQUEST_QUEUE_READS": {
509                    "type": "integer",
510                    "example": 0
511                  },
512                  "REQUEST_QUEUE_WRITES": {
513                    "type": "integer",
514                    "example": 0
515                  },
516                  "DATA_TRANSFER_INTERNAL_GBYTES": {
517                    "type": "integer",
518                    "example": 0
519                  },
520                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
521                    "type": "integer",
522                    "example": 0
523                  },
524                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
525                    "type": "integer",
526                    "example": 0
527                  },
528                  "PROXY_SERPS": {
529                    "type": "integer",
530                    "example": 0
531                  }
532                }
533              }
534            }
535          }
536        }
537      }
538    }
539  }
540}

GMGN Trending 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 GMGN Trending 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 event 

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Actor start

$0.010

Charge when the actor starts running

Each Page Scrape Charge for each page scraping

$0.010

Charge for each page scraping

Token Data Scraped

$0.003

Charge for each individual token data item successfully retrieved and saved to the dataset.

Actor Completion

$0.010

Charge when all processes are successfully completed.