GMGN CopyTrade Wallet Scraper avatar
GMGN CopyTrade Wallet Scraper

Pricing

Pay per event

Go to Store
GMGN CopyTrade Wallet Scraper

GMGN CopyTrade Wallet Scraper

Developed by

Muhammet Akkurt

Muhammet Akkurt

Maintained by Community

GMGN CopyTrade Wallet Scraper extracts profitable crypto wallet data from GMGN.ai across Ethereum, BSC, Base, Solana, and Tron. Track successful traders, analyze winning crypto strategies, and access key metrics like transactions, profits, and risk to boost your crypto investments.

5.0 (1)

Pricing

Pay per event

2

Total users

3

Monthly users

3

Last modified

4 days ago

You can access the GMGN CopyTrade Wallet 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": "Dzepzckcvnv3daDqL"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/muhammetakkurtt~gmgn-copytrade-wallet-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-muhammetakkurtt-gmgn-copytrade-wallet-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-copytrade-wallet-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-muhammetakkurtt-gmgn-copytrade-wallet-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-copytrade-wallet-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-muhammetakkurtt-gmgn-copytrade-wallet-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              "tron"
145            ],
146            "type": "string",
147            "description": "Blockchain network to scan",
148            "default": "sol"
149          },
150          "traderType": {
151            "title": "Trader Category",
152            "enum": [
153              "all",
154              "pump_smart",
155              "smart_degen",
156              "renowned",
157              "fresh_wallet",
158              "snipe_bot"
159            ],
160            "type": "string",
161            "description": "Filter wallets by trader category",
162            "default": "all"
163          },
164          "sortBy": {
165            "title": "Order By",
166            "enum": [
167              "profit_1day",
168              "profit_7days",
169              "profit_30days",
170              "win_rate",
171              "transactions",
172              "last_activity"
173            ],
174            "type": "string",
175            "description": "Criteria to order the results",
176            "default": "profit_7days"
177          },
178          "sortDirection": {
179            "title": "Sort Direction",
180            "enum": [
181              "desc",
182              "asc"
183            ],
184            "type": "string",
185            "description": "Direction to sort the results",
186            "default": "desc"
187          },
188          "min_pnl_1d": {
189            "title": "Min 1D PnL (%)",
190            "minimum": 0,
191            "maximum": 1000000000000,
192            "type": "integer",
193            "description": "Minimum 1-day profit/loss percentage (e.g., 20 for 20%)"
194          },
195          "max_pnl_1d": {
196            "title": "Max 1D PnL (%)",
197            "minimum": 0,
198            "maximum": 1000000000000,
199            "type": "integer",
200            "description": "Maximum 1-day profit/loss percentage (e.g., 50 for 50%)"
201          },
202          "min_profit_1d": {
203            "title": "Min 1D Profit (USD)",
204            "minimum": 0,
205            "maximum": 1000000000000,
206            "type": "integer",
207            "description": "Minimum 1-day profit in USD (e.g., 1000)"
208          },
209          "max_profit_1d": {
210            "title": "Max 1D Profit (USD)",
211            "minimum": 0,
212            "maximum": 1000000000000,
213            "type": "integer",
214            "description": "Maximum 1-day profit in USD (e.g., 25000)"
215          },
216          "min_pnl_7d": {
217            "title": "Min 7D PnL (%)",
218            "minimum": 0,
219            "maximum": 1000000000000,
220            "type": "integer",
221            "description": "Minimum 7-day profit/loss percentage (e.g., 20 for 20%)"
222          },
223          "max_pnl_7d": {
224            "title": "Max 7D PnL (%)",
225            "minimum": 0,
226            "maximum": 1000000000000,
227            "type": "integer",
228            "description": "Maximum 7-day profit/loss percentage (e.g., 50 for 50%)"
229          },
230          "min_profit_7d": {
231            "title": "Min 7D Profit (USD)",
232            "minimum": 0,
233            "maximum": 1000000000000,
234            "type": "integer",
235            "description": "Minimum 7-day profit in USD (e.g., 1000)"
236          },
237          "max_profit_7d": {
238            "title": "Max 7D Profit (USD)",
239            "minimum": 0,
240            "maximum": 1000000000000,
241            "type": "integer",
242            "description": "Maximum 7-day profit in USD (e.g., 25000)"
243          },
244          "min_pnl_30d": {
245            "title": "Min 30D PnL (%)",
246            "minimum": 0,
247            "maximum": 1000000000000,
248            "type": "integer",
249            "description": "Minimum 30-day profit/loss percentage (e.g., 20 for 20%)"
250          },
251          "max_pnl_30d": {
252            "title": "Max 30D PnL (%)",
253            "minimum": 0,
254            "maximum": 1000000000000,
255            "type": "integer",
256            "description": "Maximum 30-day profit/loss percentage (e.g., 50 for 50%)"
257          },
258          "min_profit_30d": {
259            "title": "Min 30D Profit (USD)",
260            "minimum": 0,
261            "maximum": 1000000000000,
262            "type": "integer",
263            "description": "Minimum 30-day profit in USD (e.g., 1000)"
264          },
265          "max_profit_30d": {
266            "title": "Max 30D Profit (USD)",
267            "minimum": 0,
268            "maximum": 1000000000000,
269            "type": "integer",
270            "description": "Maximum 30-day profit in USD (e.g., 25000)"
271          },
272          "min_txs": {
273            "title": "Min Transactions",
274            "minimum": 0,
275            "maximum": 1000000000000,
276            "type": "integer",
277            "description": "Minimum number of transactions wallet has made"
278          },
279          "max_txs": {
280            "title": "Max Transactions",
281            "minimum": 0,
282            "maximum": 1000000000000,
283            "type": "integer",
284            "description": "Maximum number of transactions wallet has made"
285          },
286          "min_avg_cost": {
287            "title": "Min Avg Cost (USD)",
288            "minimum": 0,
289            "maximum": 1000000000000,
290            "type": "integer",
291            "description": "Minimum average transaction cost in USD"
292          },
293          "max_avg_cost": {
294            "title": "Max Avg Cost (USD)",
295            "minimum": 0,
296            "maximum": 1000000000000,
297            "type": "integer",
298            "description": "Maximum average transaction cost in USD"
299          },
300          "proxyConfiguration": {
301            "title": "Proxy Configuration",
302            "type": "object",
303            "description": "Using a proxy is recommended for faster and more reliable results",
304            "default": {
305              "useApifyProxy": true,
306              "apifyProxyGroups": []
307            }
308          }
309        }
310      },
311      "runsResponseSchema": {
312        "type": "object",
313        "properties": {
314          "data": {
315            "type": "object",
316            "properties": {
317              "id": {
318                "type": "string"
319              },
320              "actId": {
321                "type": "string"
322              },
323              "userId": {
324                "type": "string"
325              },
326              "startedAt": {
327                "type": "string",
328                "format": "date-time",
329                "example": "2025-01-08T00:00:00.000Z"
330              },
331              "finishedAt": {
332                "type": "string",
333                "format": "date-time",
334                "example": "2025-01-08T00:00:00.000Z"
335              },
336              "status": {
337                "type": "string",
338                "example": "READY"
339              },
340              "meta": {
341                "type": "object",
342                "properties": {
343                  "origin": {
344                    "type": "string",
345                    "example": "API"
346                  },
347                  "userAgent": {
348                    "type": "string"
349                  }
350                }
351              },
352              "stats": {
353                "type": "object",
354                "properties": {
355                  "inputBodyLen": {
356                    "type": "integer",
357                    "example": 2000
358                  },
359                  "rebootCount": {
360                    "type": "integer",
361                    "example": 0
362                  },
363                  "restartCount": {
364                    "type": "integer",
365                    "example": 0
366                  },
367                  "resurrectCount": {
368                    "type": "integer",
369                    "example": 0
370                  },
371                  "computeUnits": {
372                    "type": "integer",
373                    "example": 0
374                  }
375                }
376              },
377              "options": {
378                "type": "object",
379                "properties": {
380                  "build": {
381                    "type": "string",
382                    "example": "latest"
383                  },
384                  "timeoutSecs": {
385                    "type": "integer",
386                    "example": 300
387                  },
388                  "memoryMbytes": {
389                    "type": "integer",
390                    "example": 1024
391                  },
392                  "diskMbytes": {
393                    "type": "integer",
394                    "example": 2048
395                  }
396                }
397              },
398              "buildId": {
399                "type": "string"
400              },
401              "defaultKeyValueStoreId": {
402                "type": "string"
403              },
404              "defaultDatasetId": {
405                "type": "string"
406              },
407              "defaultRequestQueueId": {
408                "type": "string"
409              },
410              "buildNumber": {
411                "type": "string",
412                "example": "1.0.0"
413              },
414              "containerUrl": {
415                "type": "string"
416              },
417              "usage": {
418                "type": "object",
419                "properties": {
420                  "ACTOR_COMPUTE_UNITS": {
421                    "type": "integer",
422                    "example": 0
423                  },
424                  "DATASET_READS": {
425                    "type": "integer",
426                    "example": 0
427                  },
428                  "DATASET_WRITES": {
429                    "type": "integer",
430                    "example": 0
431                  },
432                  "KEY_VALUE_STORE_READS": {
433                    "type": "integer",
434                    "example": 0
435                  },
436                  "KEY_VALUE_STORE_WRITES": {
437                    "type": "integer",
438                    "example": 1
439                  },
440                  "KEY_VALUE_STORE_LISTS": {
441                    "type": "integer",
442                    "example": 0
443                  },
444                  "REQUEST_QUEUE_READS": {
445                    "type": "integer",
446                    "example": 0
447                  },
448                  "REQUEST_QUEUE_WRITES": {
449                    "type": "integer",
450                    "example": 0
451                  },
452                  "DATA_TRANSFER_INTERNAL_GBYTES": {
453                    "type": "integer",
454                    "example": 0
455                  },
456                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
457                    "type": "integer",
458                    "example": 0
459                  },
460                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
461                    "type": "integer",
462                    "example": 0
463                  },
464                  "PROXY_SERPS": {
465                    "type": "integer",
466                    "example": 0
467                  }
468                }
469              },
470              "usageTotalUsd": {
471                "type": "number",
472                "example": 0.00005
473              },
474              "usageUsd": {
475                "type": "object",
476                "properties": {
477                  "ACTOR_COMPUTE_UNITS": {
478                    "type": "integer",
479                    "example": 0
480                  },
481                  "DATASET_READS": {
482                    "type": "integer",
483                    "example": 0
484                  },
485                  "DATASET_WRITES": {
486                    "type": "integer",
487                    "example": 0
488                  },
489                  "KEY_VALUE_STORE_READS": {
490                    "type": "integer",
491                    "example": 0
492                  },
493                  "KEY_VALUE_STORE_WRITES": {
494                    "type": "number",
495                    "example": 0.00005
496                  },
497                  "KEY_VALUE_STORE_LISTS": {
498                    "type": "integer",
499                    "example": 0
500                  },
501                  "REQUEST_QUEUE_READS": {
502                    "type": "integer",
503                    "example": 0
504                  },
505                  "REQUEST_QUEUE_WRITES": {
506                    "type": "integer",
507                    "example": 0
508                  },
509                  "DATA_TRANSFER_INTERNAL_GBYTES": {
510                    "type": "integer",
511                    "example": 0
512                  },
513                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
514                    "type": "integer",
515                    "example": 0
516                  },
517                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
518                    "type": "integer",
519                    "example": 0
520                  },
521                  "PROXY_SERPS": {
522                    "type": "integer",
523                    "example": 0
524                  }
525                }
526              }
527            }
528          }
529        }
530      }
531    }
532  }
533}

GMGN CopyTrade Wallet 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 CopyTrade Wallet 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: