Keyword Insights
GET insights/keywords/search¶
Given a group of keywords, get the associated Tweet volume as well as a set of 30 related keywords. The Tweet volume corresponds to the input keywords only, not the related keywords.
A maximum time range (end_time
-
start_time
) of 7 days is allowed.
Please note that results are scoped by a single geo (country).
Resource URL¶
https://ads-api.x.com/12/insights/keywords/search
Parameters¶
Name | Description |
---|---|
granularity required |
Specifies the granularity of the data returned for the time range
denoted by Type: enum Possible values:
|
keywords required |
A comma-separated string of keywords to narrow search by. All keywords are OR'ed with one another. Note: A
maximum of 10 keywords ( Type: string Example: |
start_time required |
Scopes the retrieved data to data collected in the window of time
between Type: string Example:
|
end_time optional |
Scopes the retrieved data to data collected in the window of time
between Note: Defaults to the current time. Type: string Example:
|
location optional |
A targeting value you would get from the GET targeting_criteria/locations endpoint to narrow results in terms of where the user of the account is located. Note that at present only country level locations are supported. Type: string Example:
|
negative_keywords optional |
A comma-separated string of keywords to exclude. All negative keywords are OR'ed with one another. Note: A
maximum of 10 keywords ( Type: string Example: |
Example Request¶
GET https://ads-api.x.com/12/insights/keywords/search?end_time=2018-02-02&granularity=DAY&keywords=developers&start_time=2018-02-01
Example Response¶
{
"request": {
"params": {
"start_time": "2018-02-01T00:00:00Z",
"end_time": "2018-02-02T00:00:00Z",
"granularity": "DAY",
"keywords": [
"developers"
]
}
},
"data": {
"related_keywords": [
"dev",
"developer",
"coders",
"mysql",
"devs",
"#technology",
"#developers",
"security",
"programmers",
"#tech",
"javascript",
"#iot",
"#bigdata",
"cloud",
"devops",
"php",
"developer",
"programmer",
"engineer",
"big data",
"agile",
"app",
"programming",
"ios",
"maker",
"startups",
"developer's",
"java",
"#devops",
"startup"
],
"tweet_volume": [
15707
]
}
}