@@ -39,7 +39,7 @@ Returns a JSON object with the following schema:
3939 "desktop" : 11
4040 }
4141 },
42- ...
42+ ...
4343]
4444```
4545
@@ -51,8 +51,8 @@ This endpoint can return a full list of categories names or a categories with al
5151
5252The following parameters can be used to filter the data:
5353
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 .
5656
5757#### Response
5858
@@ -63,45 +63,46 @@ curl --request GET \
6363
6464``` json
6565[
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"
8677 },
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+ }
8990]
9091```
9192
9293``` bash
9394curl --request GET \
94- --url ' https://{{HOST}}/v1/categories?onlyname=true '
95+ --url ' https://{{HOST}}/v1/categories?onlyname'
9596```
9697
9798``` json
9899[
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 " ,
105106 ...
106107]
107108
@@ -245,31 +246,50 @@ Returns a JSON object with the following schema:
245246
246247The following parameters can be used to filter the data:
247248
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 ` .
253251- ` 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.
254253
255254#### Response
256255
257256``` bash
258257curl --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'
260259```
261260
262261Returns a JSON object with the following schema:
263262
264263``` json
265264[
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+ }
274273]
275274```
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