-
SEO Learning Center
Broaden your SEO knowledge with resources for all skill levels.
-
The Beginner's Guide to SEO
If you're brand new to SEO, start here.
-
SEO Q&A
Get answers from the Moz Community.
-
Free Downloads and More
Quick access to whitepapers, reports, guides, webinars, and case studies.
-
Help Hub
Learn how to use Moz products.
-
Community & Events
Connect with over 600k online marketers.
-
SEO Training
Instructor-led classes and seminars
Data > Keyword > Metrics
Fetch Search Intent
Retrieve the most recent search intent scores (navigational, informational, commercial, and transactional) for any keyword that exists in our database.
JSON-RPC Method:
data.keyword.metrics.intent.fetchserp_query
object
The SERP query object describes a keyword or search phrase in combination with several options to specify how the query is run (i.e. how a SERP should be retrieved for this keyword if necessary).
1{
2 "serp_query": {
3 "keyword": "domain authority",
4 "locale": "en-US",
5 "device": "desktop",
6 "engine": "google"
7 }
8}Results include both the parsed Serp Query along with the keyword metrics. If a value cannot be found, a `NotFoundError` is thrown.
keyword_metrics
object
Available metrics for a given keyword. In this action only intent will have a value, all other metrics will always be null.
serp_query
object
Represents a SERP query object.
1{
2 "serp_query": {
3 "keyword": "domain authority",
4 "locale": "en-US",
5 "device": "desktop",
6 "engine": "google",
7 "vicinity": ""
8 },
9 "keyword_metrics": {
10 "volume": null,
11 "difficulty": null,
12 "organic_ctr": null,
13 "priority": null,
14 "intent": {
15 "primary_intents": [
16 "informational"
17 ],
18 "all_intents": [
19 {
20 "label": "informational",
21 "score": 0.59
22 },
23 {
24 "label": "navigational",
25 "score": 0.19
26 },
27 {
28 "label": "commercial",
29 "score": 0.12
30 },
31 {
32 "label": "transactional",
33 "score": 0.1
34 }
35 ]
36 }
37 }
38}Uses one row per successful call.
api.limits.data.rows