curl --request POST \
--url https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"technology_paths": [
{
"path": "<string>",
"name": "<string>"
}
],
"groups": [
"<string>"
],
"categories": [
"<string>"
],
"technologies": [
"<string>"
],
"keywords": [
"<string>"
],
"mode": "<string>",
"filters": [
"<unknown>"
],
"internal_list_limit": 123,
"tag": "<string>"
}
]
'import requests
url = "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live"
payload = [
{
"technology_paths": [
{
"path": "<string>",
"name": "<string>"
}
],
"groups": ["<string>"],
"categories": ["<string>"],
"technologies": ["<string>"],
"keywords": ["<string>"],
"mode": "<string>",
"filters": ["<unknown>"],
"internal_list_limit": 123,
"tag": "<string>"
}
]
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify([
{
technology_paths: [{path: '<string>', name: '<string>'}],
groups: ['<string>'],
categories: ['<string>'],
technologies: ['<string>'],
keywords: ['<string>'],
mode: '<string>',
filters: ['<unknown>'],
internal_list_limit: 123,
tag: '<string>'
}
])
};
fetch('https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'technology_paths' => [
[
'path' => '<string>',
'name' => '<string>'
]
],
'groups' => [
'<string>'
],
'categories' => [
'<string>'
],
'technologies' => [
'<string>'
],
'keywords' => [
'<string>'
],
'mode' => '<string>',
'filters' => [
'<unknown>'
],
'internal_list_limit' => 123,
'tag' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live"
payload := strings.NewReader("[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"version": "<string>",
"status_code": 123,
"status_message": "<string>",
"time": "<string>",
"cost": 123,
"tasks_count": 123,
"tasks_error": 123,
"tasks": [
"<string>"
],
"tasks.id": "<string>",
"tasks.status_code": 123,
"tasks.status_message": "<string>",
"tasks.time": "<string>",
"tasks.cost": 123,
"tasks.result_count": 123,
"tasks.path": [
"<string>"
],
"tasks.data": {},
"tasks.result": [
"<string>"
],
"tasks.result.countries": {},
"tasks.result.languages": {},
"tasks.result.content_languages": {},
"tasks.result.keywords": {}
}Technologies Summary
Where a technology is used, rather than by whom: returns countries, languages, content_languages and keywords for the technology set you name.
curl --request POST \
--url https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"technology_paths": [
{
"path": "<string>",
"name": "<string>"
}
],
"groups": [
"<string>"
],
"categories": [
"<string>"
],
"technologies": [
"<string>"
],
"keywords": [
"<string>"
],
"mode": "<string>",
"filters": [
"<unknown>"
],
"internal_list_limit": 123,
"tag": "<string>"
}
]
'import requests
url = "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live"
payload = [
{
"technology_paths": [
{
"path": "<string>",
"name": "<string>"
}
],
"groups": ["<string>"],
"categories": ["<string>"],
"technologies": ["<string>"],
"keywords": ["<string>"],
"mode": "<string>",
"filters": ["<unknown>"],
"internal_list_limit": 123,
"tag": "<string>"
}
]
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify([
{
technology_paths: [{path: '<string>', name: '<string>'}],
groups: ['<string>'],
categories: ['<string>'],
technologies: ['<string>'],
keywords: ['<string>'],
mode: '<string>',
filters: ['<unknown>'],
internal_list_limit: 123,
tag: '<string>'
}
])
};
fetch('https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
[
'technology_paths' => [
[
'path' => '<string>',
'name' => '<string>'
]
],
'groups' => [
'<string>'
],
'categories' => [
'<string>'
],
'technologies' => [
'<string>'
],
'keywords' => [
'<string>'
],
'mode' => '<string>',
'filters' => [
'<unknown>'
],
'internal_list_limit' => 123,
'tag' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live"
payload := strings.NewReader("[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "[\n {\n \"technology_paths\": [\n {\n \"path\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"groups\": [\n \"<string>\"\n ],\n \"categories\": [\n \"<string>\"\n ],\n \"technologies\": [\n \"<string>\"\n ],\n \"keywords\": [\n \"<string>\"\n ],\n \"mode\": \"<string>\",\n \"filters\": [\n \"<unknown>\"\n ],\n \"internal_list_limit\": 123,\n \"tag\": \"<string>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"version": "<string>",
"status_code": 123,
"status_message": "<string>",
"time": "<string>",
"cost": 123,
"tasks_count": 123,
"tasks_error": 123,
"tasks": [
"<string>"
],
"tasks.id": "<string>",
"tasks.status_code": 123,
"tasks.status_message": "<string>",
"tasks.time": "<string>",
"tasks.cost": 123,
"tasks.result_count": 123,
"tasks.path": [
"<string>"
],
"tasks.data": {},
"tasks.result": [
"<string>"
],
"tasks.result.countries": {},
"tasks.result.languages": {},
"tasks.result.content_languages": {},
"tasks.result.keywords": {}
}countries, languages, content_languages and keywords for the technology set you name. Measured at 1.4 KB. Wrapped in DataForSEO’s envelope: data in tasks[0].result, upstream charge in tasks[0].cost, and the real outcome in tasks[0].status_code - a rejected request still returns HTTP 200, so check that field rather than the transport status. Use it to size a market before pulling domain lists. For counts broken down by group and category use post_dataforseo_domains_tech_aggregation_live; for adoption over time, post_dataforseo_domains_tech_technology_stats_live.
Example
curl -X POST "https://api.aisa.one/apis/v1/dataforseo/domain_analytics/technologies/technologies_summary/live" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '[{"technology_paths": "...", "groups": "...", "categories": "..."}]'
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
target technology paths required field if you don’t specify groups, technologies and categories each technology path should be specified as a separate object containing “path” and “name”, where “path” is specified as “$group_id.$category_id” and “name” – as the name of the target technology; each object with a technology path should be separated with a comma you can find the full list of technology group ids, category ids and technology names on this page note: you can specify up to 10 technology paths in this array example: [{"path": "content.cms","name": "wordpress"}, {"path": "marketing.crm","name": "salesforce"}]
Show child attributes
Show child attributes
ids of the target technology groups required field if you don’t specify technologies, technology_paths, categories, or keywords you can find the full list of technology group ids on this page note: you can specify up to 10 technology groups in this array example: ["sales", "marketing"]
ids of the target technology categories required field if you don’t specify groups, technology_paths, technologies, or keywords you can find the full list of technology category ids on this page note: you can specify up to 10 technology categories in this array example: ["payment_processors","crm"]
target technologies required field if you don’t specify groups, technology_paths, categories, or keywords you can find the full list of technologies you can specify here on this page note: you can specify up to 10 technologies in this array example: ["Google Pay","Salesforce"]
target keywords in the domain’s title, description or meta keywords required field if you don’t specify groups, technology_paths, categories, or technologies you can specify the maximum of 10 keywords; UTF-8 encoding; example: ["seo","software"] learn more about rules and limitations of keyword and keywords fields in DataForSEO APIs in this Help Center article
search mode optional field possible search mode types: as_is – search for results exactly matching the specified group ids, category ids, or technology names entry – search for results matching a part of the specified group ids, category ids, or technology names default value: as_is
array of results filtering parameters optional field you can add several filters at once (8 filters maximum) you should set a logical operator and, or between the conditions the following operators are supported: , , >, >=, =, , in, not_in, like,not_like you can use the % operator with like and not_like to match any string of zero or more characters you can use the following parameters to filter the results: domain_rank, last_visited, country_iso_code, language_code, content_language_code example: [["country_iso_code","=","US"], "and", ["domain_rank",">",800]] for more information about filters, please refer to Domain Analytics Technologies API – Filters
maximum number of elements within internal arrays optional field you can use this field to limit the number of elements within the following arrays: countries, languages, content_languages, keywords default value: 10 minimum value: 1 maximum value: 10000
user-defined task identifier optional field the character limit is 255 you can use this parameter to identify the task and match it with the result you will find the specified tag value in the data object of the response
Response
Successful response
the current version of the API
general status code you can find the full list of the response codes here Note: we strongly recommend designing a necessary system for handling related exceptional or error conditions
general informational message you can find the full list of general informational messages here
execution time, seconds
total tasks cost, USD
the number of tasks in the tasks array
the number of tasks in the tasks array returned with an error
array of tasks
task identifier unique task identifier in our system in the UUID format
status code of the task generated by DataForSEO; can be within the following range: 10000-60000 you can find the full list of the response codes here
informational message of the task you can find the full list of general informational messages here
execution time, seconds
cost of the task, USD
number of elements in the result array
URL path
contains the same parameters that you specified in the POST request
array of results
distribution of websites by country contains country codes and number of websites per country
distribution of websites by language contains language codes and number of websites per language
distribution of websites by content language contains content language codes and number of websites per language
distribution of websites by keywords contains keywords found in the websites’ titles, descriptions or meta keywords, and number of websites using each keyword