@@ -39,7 +39,7 @@ Returns a JSON object with the following schema:
39
39
"desktop" : 11
40
40
}
41
41
},
42
- ...
42
+ ...
43
43
]
44
44
```
45
45
@@ -51,8 +51,8 @@ This endpoint can return a full list of categories names or a categories with al
51
51
52
52
The following parameters can be used to filter the data:
53
53
54
- - ` category ` (` required ` ): A comma-separated string representing the category name(s).
55
- - ` onlyname ` (optional): A string 'true' or 'false' .
54
+ - ` category ` (optional ): A comma-separated string representing the category name(s).
55
+ - ` onlyname ` (optional): No value required. If present, only the category names will be returned .
56
56
57
57
#### Response
58
58
@@ -63,45 +63,46 @@ curl --request GET \
63
63
64
64
``` json
65
65
[
66
- {
67
- "description" : " Solutions that redirect domains to a different location or page" ,
68
- "technologies" : [
69
- " Arsys Domain Parking"
70
- ],
71
- "origins" : {
72
- "mobile" : 14 ,
73
- "desktop" : 8
74
- },
75
- "category" : " Domain parking"
76
- },
77
- {
78
- "description" : " Systems that automate building, testing, and deploying code" ,
79
- "technologies" : [
80
- " Jenkins" ,
81
- " TeamCity"
82
- ],
83
- "origins" : {
84
- "mobile" : 22 ,
85
- "desktop" : 35
66
+ {
67
+ "description" : " Systems that automate building, testing, and deploying code" ,
68
+ "technologies" : [
69
+ " Jenkins" ,
70
+ " TeamCity"
71
+ ],
72
+ "origins" : {
73
+ "mobile" : 22 ,
74
+ "desktop" : 35
75
+ },
76
+ "category" : " CI"
86
77
},
87
- "category" : " CI"
88
- }
78
+ {
79
+ "description" : " Solutions that redirect domains to a different location or page" ,
80
+ "technologies" : [
81
+ " Cloudflare" ,
82
+ " Arsys Domain Parking"
83
+ ],
84
+ "origins" : {
85
+ "mobile" : 14 ,
86
+ "desktop" : 8
87
+ },
88
+ "category" : " Domain parking"
89
+ }
89
90
]
90
91
```
91
92
92
93
``` bash
93
94
curl --request GET \
94
- --url ' https://{{HOST}}/v1/categories?onlyname=true '
95
+ --url ' https://{{HOST}}/v1/categories?onlyname'
95
96
```
96
97
97
98
``` json
98
99
[
99
- " Blogs " ,
100
- " LMS " ,
101
- " CI " ,
102
- " Cross border ecommerce " ,
103
- " Cart abandonment " ,
104
- " Domain parking " ,
100
+ " A/B Testing " ,
101
+ " Accessibility " ,
102
+ " Accounting " ,
103
+ " Advertising " ,
104
+ " Affiliate programs " ,
105
+ " Analytics " ,
105
106
...
106
107
]
107
108
@@ -245,31 +246,50 @@ Returns a JSON object with the following schema:
245
246
246
247
The following parameters can be used to filter the data:
247
248
248
- - ` technology ` (` required ` ): A comma-separated string representing the technology name(s).
249
- - ` start ` (optional): A string representing the start date in the format ` YYYY-MM-DD ` .
250
- - ` end ` (optional): A string representing the end date in the format ` YYYY-MM-DD ` .
251
- - ` geo ` (optional): A string representing the geographic location.
252
- - ` rank ` (optional): An string representing the rank.
249
+ - ` client ` (optional): A string with the client: ` mobile ` or ` desktop ` .
250
+ - ` technology ` (optional): A comma-separated string representing the technology name(s) or ` ALL ` .
253
251
- ` category ` (optional): A comma-separated string representing the category name(s).
252
+ - ` onlyname ` (optional): No value required. If present, only the technology names will be returned.
254
253
255
254
#### Response
256
255
257
256
``` bash
258
257
curl --request GET \
259
- --url ' https://{{HOST}}/v1/technologies?start=2022-02-01&end=2022-04-01& category=Live%20chat%2C%20blog&technology=Smartsupp&client=mobile'
258
+ --url ' https://{{HOST}}/v1/technologies?category=Live%20chat%2C%20blog&technology=Smartsupp&client=mobile'
260
259
```
261
260
262
261
Returns a JSON object with the following schema:
263
262
264
263
``` json
265
264
[
266
- {
267
- "client" : " mobile" ,
268
- "similar_technologies" : null ,
269
- "description" : " Smartsupp is a live chat tool that offers visitor recording feature." ,
270
- "origins" : 25649 ,
271
- "technology" : " Smartsupp" ,
272
- "category" : " Live chat"
273
- }
265
+ {
266
+ "client" : " mobile" ,
267
+ "similar_technologies" : null ,
268
+ "description" : " Smartsupp is a live chat tool that offers visitor recording feature." ,
269
+ "origins" : 25649 ,
270
+ "technology" : " Smartsupp" ,
271
+ "category" : " Live chat"
272
+ }
274
273
]
275
274
```
275
+
276
+ ``` bash
277
+ curl --request GET \
278
+ --url ' https://{{HOST}}/v1/technologies?onlyname'
279
+ ```
280
+
281
+ Returns a JSON object with the following schema:
282
+
283
+ ``` json
284
+ [
285
+ " 1C-Bitrix" ,
286
+ " 2B Advice" ,
287
+ " 33Across" ,
288
+ " 34SP.com" ,
289
+ " 4-Tell" ,
290
+ " 42stores" ,
291
+ " 51.LA" ,
292
+ " 5centsCDN" ,
293
+ ...
294
+ }
295
+ ```
0 commit comments