API reference · DataForSEO
dataforseo/v3/domain_analytics/technologies/aggregation_technologies/live
Integrate this model through SandBase's unified API, with production-ready schemas and examples.
Production endpoint
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
POST
https://api.sandbase.ai/v1/runModel ID
dataforseo/v3/domain_analytics/technologies/aggregation_technologies/live01
Input Schema
14 parameters · 0 required · 14 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
tag | string | Optional | 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 ob... |
mode | string | Optional | 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 mat... |
group | string | Optional | id of the target technology group required field if you don't specify technology, category or keyword at least one field (group, category, keyword, technology) must be set you can find the full list o... |
limit | integer | Optional | the maximum number of returned technologies optional field default value: 100 maximum value: 10000 |
offset | integer | Optional | offset in the results array of returned domains optional field default value: 0 maximum value: 9999 if you specify the 10 value, the first ten technologies in the results array will be omitted and the... |
filters | array | Optional | 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 ar... |
keyword | string | Optional | target keyword in the domain's meta keywords required field if you don't specify group, category or technology at least one field (group, category, keyword, technology) must be set UTF-8 encoding exam... |
category | string | Optional | id of the target technology category required field if you don't specify group, keyword or technology at least one field (group, category, keyword, technology) must be set you can find the full list o... |
order_by | array | Optional | results sorting rules optional field you can use the following values to sort the results: groups_count, categories_count, technologies_count possible sorting types: asc – results will be sorted... |
technology | string | Optional | target technology required field if you don't specify group, keyword or category at least one field (group, category, keyword, technology) must be set you can find the full list of technologies on thi... |
internal_list_limit | integer | Optional | maximum number of items with identical "category", "group", and "technology" optional field if you use this field, the values specified in internal_groups_list_limit, internal_categories_list_limit an... |
internal_groups_list_limit | integer | Optional | maximum number of returned technology groups optional field you can use this field to limit the number of items with identical "group" in the results default value: 5 minimum value: 1 maximum value: 1... |
internal_categories_list_limit | integer | Optional | maximum number of returned technology categories within the same group optional field you can use this field to limit the number of items with identical "category" in the results default value: 5 mini... |
internal_technologies_list_limit | integer | Optional | maximum number of returned technologies within the same category optional field you can use this field to limit the number of items with identical "technology" in the results default value: 10 minimum... |
02
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the generation task |
status | string | Task status: pending, running, completed, failed, timeout |
model | string | Model used for the generation |
outputs | array | Array of output items |
outputs[].url | string | URL of the generated artifact |
outputs[].content_type | string | MIME type (e.g. image/png, video/mp4) |
error | object | null | Error details if failed, null on success |
error.type | string | Machine-readable error type code |
error.message | string | Human-readable error description |
03
Code Examples
Ready-to-run snippets
curl -X POST https://api.sandbase.ai/v1/run \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "dataforseo/v3/domain_analytics/technologies/aggregation_technologies/live",
"prompt": "a beautiful sunset over mountains"
}'
