# Keyword.com Google SERP Tracker API v2 # Welcome to the Keyword.com API Documentation! The **Keyword.com API** empowers developers to programmatically access and manage keyword ranking data, giving you the same core functionality available in the Keyword.com interface. Whether you’re building an SEO tool, a content marketing platform, or a performance dashboard, our API delivers the data and insights needed to grow search visibility and drive traffic. This documentation covers everything you need to get started: - Authentication using secure headers - RESTful endpoints for managing projects and keywords - Practical examples of requests and responses - Tips for efficient, scalable integration ## **Getting Started** To use the API, you’ll need an API token. If you don’t have one yet, create an account on [Keyword.com](https://keyword.com) and retrieve your token under **Settings >** [Account tab](https://app.keyword.com/settings/account). Once authenticated, you can: - Retrieve project and keyword ranking data - Add and delete keywords - Trigger on-demand keyword refreshes - Access custom shareable view links for reporting - And more... With this API, you can integrate Keyword.com into your internal tools, automate SEO workflows, and scale your keyword tracking operations. ## Authentication The Keyword.com API uses **token-based authentication via HTTP headers** for secure access. ### **Required Header** Include the following header in all your API requests: ``` Authorization: [api_token] ``` Exampe: ``` bash curl --location 'https://app.keyword.com/api/v2/groups/Apple/keywords/272678916' \ --header 'Authorization: Bearer [API_TOKEN]' ``` ### **API Token Types** There are two types of tokens: - **Master API Token** Grants full access to your account, including all projects and administrative actions (e.g., add/remove keywords, manage users). - **Project Auth Token + ViewKey** Provides access to a specific project. Useful when sharing data with third-party tools or restricting access. Keep your API key and tokens secure, and do not share them with unauthorized users. ### Making API Requests The Keyword.com API follows a RESTful design, using standard HTTP methods: - GET to retrieve data - POST to create resources - PATCH to update data - DELETE to remove resources All responses are returned in JSON format for easy integration. By following this guide, you’ll be able to seamlessly embed Keyword.com’s capabilities into your product or workflow. Let’s get started! --- # **Keyword Update Schedule** One of the core benefits of using **Keyword.com** is that **you don’t need to manually run API requests to keep your keyword data fresh**—we handle that for you. When you add keywords to a project, they’re automatically queued for updates according to your plan. Our system continuously tracks and refreshes keyword rankings in the background, so you can focus on analysis and insights rather than data collection. #### Automatic Update Frequency | **Plan Type** | **Update Frequency** | | --- | --- | | Daily | Every 24 hours | | Weekly | Every 7 days | > **Example**: If you’re on a weekly plan and added keywords on a Wednesday, your keywords will automatically refresh every Wednesday between 00:00 and 12:00 UTC Just keep in mind: - On-demand refreshes are limited based on your plan. - They count separately from the automatic updates. This hybrid approach gives you both the **convenience of automation** and the **control of real-time updates** when you need them. **Base URL:** `https://app.keyword.com` --- ## Projects, Groups & Tags ### Fetch all project, group & tag details `GET /api/v2/groups/active` This call will get you a summary of all your projects with their respective groups, tags and number of keywords. It will also provide you with the PROJECT AUTH KEY which is required to collect detailed project and keyword data. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Response (200):** ```json { "data": [ { "type": "group", // By default this is always ‘group’ "id": "Disney", //This is the project or group name. Groups are identified by the text [sub] and include the main project name. for example, Project: Disney or Group: Disney [sub] Disney Classics "attributes": { "project_id": 3057417, // Unique identifier of the project or group "auth": "9d8by579d8by579d8by5769d8by574", //The project or group auth key "name": "Disney", // Project or group name "keywords_count": { // Number of acive keywords in the project or group "ACTIVE": 11 }, "tags_count": 2, // Number of tags in the project or group "tags": [ { "id": 27727, // Unique identifier for the tag "project_id": 3057417, // The project or group’s unique id "name": "Disney", // Project or group name "created_at": "2021-09-30 05:11:38", // Date and time the tag was created "updated_at": "2021-09-30 05:11:38", // Date and time of the last keyword ranking update ran "keywords_count": 6 // The total number of active keywords in the tag }, { "id": 27728, "project_id": 3057417, "name": "Walt Disney", "created_at": "2021-09-30 05:12:02", "updated_at": "2021-09-30 05:12:02", "keywords_count": 4 } ], "keywords_last_updated_at": "2023-04-14T07:17:52-04:00", // Last date and time the keyword ranking data in the main project and tags were updated "notes_count": 0, // Number of notes present in the historical charts "updated_at": "2021-05-11T09:49:33-04:00", // Dae and time of last note updae "password": null, // Project or group’s password to access shared ViewKey links "company_name": null, // Company name for the project or group’s branded reports "company_desc": null, // Company description for the project or group’s branded reports "company_link": null, // Company website URL for the project or group’s branded reports "company_logo": null, // Company logo for the project or group’s branded reports "sov_view_key": false, // Indicated if Share of Voice is visible in shared ViewKeys } }, { "type": "group", "id": "Disney[sub]Disney Classics", // Example of a group. Identifier is the [sub] text "attributes": { "project_id": 3144454, "auth": "9d8by579d8by579d8by5769d8by574", "name": "Disney[sub]Disney Classics", "keywords_count": { "ACTIVE": 4 }, "keywords_last_updated_at": "2023-04-14T06:18:57-04:00", "shortkey": "rDSNGGf", "notes_count": 0, "updated_at": "2021-08-19T09:21:37-04:00", "crawled_at": 1681467537, "password": null, "company_name": null, "company_desc": null, "company_link": null, "company_logo": null, "sov_view_key": false, "url": null } } ] } ``` --- ### Fetch single project or group details `GET /api/v2/groups/{project_name}` This call is used to retrieve a single project’s summary of groups, tags and number of keywords. It will also provide you with the PROJECT AUTH KEY which is required to collect detailed project and keyword data. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Response (200):** ```json { "data": { "type": "group", // By default this is always ‘group’ "id": "Disney", // This is the project or group name. Groups are identified by the text [sub] and include the main project name. for example, Project: Disney or Group: Disney [sub] Disney Classics "attributes": { "project_id": 3057417, // Unique identifier of the project or group "auth": "9d8by579d8by579d8by5769d8by574", // The project or group auth key. "name": "Disney", // Project name "keywords_count": { "ACTIVE": 11 // Indicates the number of active keywords in the project or group }, "tags_count": 2, // Indicated the number of tags in the project or group "tags": [ { "id": 27727, // Unique identifier for the tag "project_id": 3057417, // The project or group’s unique id "name": "Disney", // Tag name "created_at": "2021-09-30 05:11:38", // Date and time the tag was created "updated_at": "2021-09-30 05:11:38" // Date and time of the last keyword ranking update ran }, { "id": 26502, "project_id": 3057417, "name": "Donald Duck", "created_at": "2021-08-27 05:34:55", "updated_at": "2021-08-27 05:34:55" } ], "keywords_last_updated_at": "2023-04-15T06:13:22-04:00", // Last date and time the keyword ranking data in the main project and tags were updated "notes_count": 0, // Number of notes present in the historical charts "updated_at": "2021-05-11T09:49:33-04:00", // Date and time notes were last updated "password": null, // Project or group’s password to access shared ViewKey links "company_name": null, // Company name for the project or group’s branded reports "company_desc": null, // Company description for the project or group’s branded reports "company_link": null, // Company website URL for the project or group’s branded reports "company_logo": null, // Company logo for the project or group’s branded reports "sov_view_key": false, // Indicated if Share of Voice is visible in shared ViewKeys } } } ``` --- ### Archive single project or group `PUT /api/v2/groups/{project_name}` Sets the project status to “Archived.” The project will remain in the “Archived” state until it is either restored or permanently deleted. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Request Body:** ```json { "data": { "type": "group", // Do not change - for backlend use "attributes": { "status": 2 // Sets project or group to Archive state } } } ``` --- ### Delete single project or group `DELETE /api/v2/groups/{project_name}` This call will delete a single project or group. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Response (200):** ```json [object Object] ``` --- ### On demand refresh of keywords by project `POST /api/v2/keywords/refresh` Use this call to run an on demand update for all the keywords in a project or group. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Request Body:** ```json { "data": { "include_sub_groups": true, // Mark as true if you want to refresh all the keywords in the project and groups "project_ids": ["{{project_id_list}}"] // List of project ids that need to be refreshed } } ``` **Response (200):** ```json { "message": "You have 3934 keyword refreshes left." // Indicates how many on demand refreshes you have left for the day } ``` --- ### List tracked regions for project or group `GET /api/v2/groups/{project_name}/regions` Use this call to get a list of all the regions your are tracking in this project with the count of number of keywords per region. **Important Notes:** 1. The group name must follow the required naming convention and include \[sub\] when submitting the request. 2. Ensure the parent project is created **before** adding groups to it. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Response (200):** ```json { "data": [ { "region": "google.com", // Tracked Google region "lang": "en", // Language "type": "se", // Search Engine "total": 6 // Number of keywords tracked in this region }, { "region": "google.com.au", "lang": "en-au", "type": "se", "total": 1 }, { "region": "google.es", "lang": "es", "type": "se", "total": 1 } ] } ``` --- ### Create project `POST /api/v2/groups` Use this endpoint to create a single project in your Keyword.com account **Request Body:** ```json {"data": {"type":"project", "attributes": {"category":"{{project_name}}", // Project name "currency_code":"{{reporting_currency}}" // Reporting currency 3-letter code } } } ``` **Response (201):** ```json { "data": { "type": "group", "id": "audi", // Project name "attributes": { "project_id": 3698242, // Project_id "auth": "4857y4iurbfwekjfrbkebrq", "name": "audi", // Project name "keywords_count": [], // Number of keywords in project "tags_count": 0, // Number of tags in the project "tags": [], // List of tags "keywords_last_updated_at": null, "shortkey": "RfVyHsg", "notes_count": 0, "updated_at": "2024-06-04T13:22:35+00:00", "crawled_at": null, "password": null, "company_name": null, "company_desc": null, "company_link": null, "company_logo": null, "sov_view_key": false, "url": null, "currency_code": "GBP", // Reporting currency "project_overview_settings": { "project_metrics": { "visible": true, "order": 0 }, "keywords_in_top": { "visible": true, "order": 1 }, "sov": { "visible": true, "order": 2 }, "visibility": { "visible": true, "order": 3 }, "estimated_traffic": { "visible": true, "order": 4 }, "top_pages": { "visible": true, "order": 5 }, "organic_traffic_acquisition": { "visible": true, "order": 6 }, "serp_feature_performance": { "visible": true, "order": 7 }, "keywords_by_intent": { "visible": true, "order": 8 }, "average_rank": { "visible": true, "order": 9 } } } } } ``` --- ### Restore project or group from the archive `GET /api/v2/groups/{project_name}/undo/archive` This endpoint allows users to restore archived projects or groups. Once restored, the associated keywords will automatically update during the next scheduled automatic cycle. If an immediate update is needed, users can trigger an on-demand request for the restored project. Important Notes: * The group name must follow the required naming convention and include [sub] when submitting the request. * Ensure the parent project is created before adding groups to it. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | --- ### Get keyword movement metrics for project, group or tag `GET /api/v2/groups/{project_name}/metrics` ### GET /api/v2/groups/{{project_name}}/metrics This endpoint retrieves metrics for a specific group within a project. #### Request - Path Parameters - `project_name` (string, required): The name of the project. - Query Parameters - `tagId` (string, required): The ID of the tag. - `timeframe` (string, required): The time frame for the metrics. #### Response The response for this request follows the JSON schema below: ```json { "data": { "type": "", "id": "", "attributes": { "ranges": [ { "daily": { "count": 0, "change": 0, "status": "" }, "weekly": { "count": 0, "change": 0, "status": "" }, "monthly": { "count": 0, "change": 0, "status": "" }, "semester": { "count": 0, "change": 0, "status": "" }, "yearly": { "count": 0, "change": 0, "status": "" }, "life": { "count": 0, "change": 0, "status": "" }, "count": 0, "title": "" } ], "movements": { "daily": { "up": 0, "down": 0, "tie": 0 }, "weekly": { "up": 0, "down": 0, "tie": 0 }, "monthly": { "up": 0, "down": 0, "tie": 0 }, "semester": { "up": 0, "down": 0, "tie": 0 }, "yearly": { "up": 0, "down": 0, "tie": 0 }, "life": { "up": 0, "down": 0, "tie": 0 } }, "chart": null, "total": 0 } } } ``` **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | | `tagId` | query | No | | | `timeframe` | query | No | Options: daily, weekly, monthly, semester (6m), yearly, life | **Response (200):** ```json [object Object] ``` --- ## Keywords ### Add keywords to project or group `POST /api/v2/groups/{project_name}/keywords` Add keywords to project or group. The response will include details of the keywords, but will not include tracking data and keyword metrics. Those are being updated in the background. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Request Body:** ```json { "data":[ { "type":"keyword", // Always set to 'keyword' "attributes":{ "category":"Disney", // Project name "ignore_local":true, // Set if you want to ignore local listings or include in the rank results "near":"", // Location "source":1, // Set to 1 to indicate that keyword was added with the API "gmb":"", // Google My Business name (must be exact) "url":"disney.com", // Tracked URL - if you enter user as keyword.com without a / at the end, it will track the broad domain. If there is a / in the url it will track that exact domain "region":"google.com", // Google region "language":"en", // Language "tags":[], // Add tags "type":"se", // Set the device type se=desktop, sem=mobile "url_tracking_method": "broad", // set to "broad" or "Exact" "ignore_sub_domains": false, // set if you want to ignore the sub-domains while tracking "kw":"Jungle Book" // Keyword - 150 character limit } } ] } ``` **Response (201):** ```json { "data": [ { "type": "keyword", "id": "246481552", // Unique keyword id "attributes": { "project_id": 3141213, // Project unique id "category": "Intirol", // Project name "url": "disney.com", // Tracked domain - if you enter user as keyword.com without a / at the end, it will track the broad domain. If there is a / in the url it will track that exact domain "auth": "9d8by579d8by579d8by5769d8by574", // Unique PROJECT AUTHKEY used to retrieve project data "kw": "jungle book", // Keyword "start": null, // Starting rank - will populae afer keyword has been racked "notes": null, // Keyword notes "tags_count": 0, // Number of tags linked to keyword "tags": [], "tag": null,//Tag name "region": "google.com", // Google region "language": "en", // Tracked language "in_featured": false, // Indicates if domain is rannking in featured snippets "has_featured": false, // Indicates if keyword has any featured snippets "has_featured_url": null, // Indicates if domain is featured "ignore_local": true, // Indicates is local listings are ignored or tracked "ignore_featured": true, // Indicates if keyword tracking is set to ignore featured snippet "url_tracking_method": "broad", // Indicated if we track the Exact or Broad url "exact": false, // Indicates if you are tracking 'exac' or 'broad' domain for keyword "type": "se", // Set to 'se' "gmb": null, // Google My Business "near": null, // Locaion "isfav": false, // Indicates if keyword is set to favorite "status": "ACTIVE", // Keyword state "clicks": 14, // Average number of clicks (Google Search Console) - If Google Console account not linked results will be displayed as "-1" "impressions": -1, // Impressions metri=c (Google Search Console) - If Google Console account not linked results will be displayed as "-1" "ctr": 0.53, // Click Through Rae (Google Search Console) - If Google Console account not linked results will be displayed as "-1" "ms": 53422, // (Monthly search volume) "competition": "Low", // Competition metric (GoogleAds) "cpc": 4.21, // Average cos per click in US Dollars (GoogleAds) "gpage": null, // Google page "features": [], "grank": null, // Current Google rank "grank_int": 5, // The numeric value of rank - If OTR it will show 0 "best": null, // Bes ranking posiion since sart "seocomp": null, "in_local_pack": false, // Indicates if ranking in local pack "rankingurl": "NOT FOUND", // URL that is ranking "grankhistory": null, // Historic ranking "trends": { "day": 0, // Daily keyword movement "week": 0, // Weekly keyword movement "month": 0, // Monthly keyword movement "life": 0 // Lifetime movement }, "updated_at": "2023-04-15T08:27:55-04:00", // Last changes made to keyword "crawled_at": null // Date and time keyword rank weas updated } } ], "meta": { "title": "1 keyword has been added", // Indicated how many keywords were added "counts": { "duplicates": 0, // Indicates if there is a duplicate "added": 1 // Succesfully added keyword count } } } ``` --- ### Retrieve single keyword data `GET /api/v2/groups/{project_name}/keywords/{keyword_id}&date={single_date}` Use this call to retrieve all the keyword settings and ranking metrics for a single keyword. The keyword_id is the unique identifier of the keyword, which is obtained after you add the keyword. **You can add the 'date' parameter to retrieve the ranking data for a specific date.** **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | | `keyword_id}&date={single_date` | path | Yes | | **Response (200):** ```json { "data": { "type": "keyword", "id": "187181871", // Unique keyword id "attributes": { "project_id": 3057417, // Unique project id "category": "Disney", // Project name "url": "disney.com", // Tracked url "auth": "9d8by579d8by579d8by5769d8by574", // Project Auth key for ViewKey "kw": "disneyland", // Keyword "source": 3, // Indicates how keyword was added to your project or group (1=API, 2=Keyword suggestions, 3=Manual, 4=Bulk import) "start": 76, // Rank when keyword was added "notes": null, // Notes added to keyword "tags_count": 2, // Number of tags linked to keyword "tags": [ { "id": 27727, // Tag is "project_id": 3057417, "name": "Disney", "created_at": "2021-09-30 05:11:38", // Date tag was created "updated_at": "2021-09-30 05:11:38", // Date tag was updated "pivot": { "keyword_id": 187181871, // Keyword id "tag_id": 27727 } }, } ], "tag": null, "region": "google.com", // Tracked Google region "language": "en", // tracked language "in_featured": false, // Is url found in features snippet "has_featured": false, // Indicates if Featured Snippets were found "has_featured_url": "", // Show the featured url "ignore_local": true, // Indicates if you are are tracking local packs as organic results "included_in_sov": true, // Indicates if the keyword is included in share of voice calculations "ignore_featured": true, "exact": false, // Indicates if you are tracking the exact url "type": "se", // Keyword type (se=desktop, sem=mobile, maps=maps) "gmb": null, // Tracked Google Business name "near": null, // Tracked location "isfav": true, // Indicates if this is a favorite "status": "ACTIVE", // Keyword status "clicks": -1, // Google Search Console metric - Average clicks - If Google Console account not linked results will be displayed as "-1" "impressions": -1, // Google Search Console metric - Impressions - If Google Console account not linked results will be displayed as "-1" "ctr": -1, // Google Search Console metric - CTR - If Google Console account not linked results will be displayed as "-1" "ms": 1830000, // Monthly search volume "cpc": 0.44279999999999997, // Cost per click in predefined currency (see currency symbol attribute) "competition": 0.34, // Keyword competition metric "gpage": 1, // Google page number "serp_features": { // Indiucates the found SERP features on the page. and if you are featured it shows a 1 "knowledge_panel": false, "reviews": 1, "site_links": 0, "ppl_also_ask": 1, "top_stories": 0, "ads": 0 }, "grank": 10, // Current Google rank position "grank_int": 5, // The numeric value of rank - If OTR it will show 0 "brank": 0, // NOT USED "best": 3, // Best rank of all time "yrank": 0, // NOT USED "seocomp": 270000000, // Indicated the number of search results for that keyword "in_local_pack": false, // Indicates if ranking in local pack "rankingurl": "https://www.disney.com/", // Ranking url "grankhistory": [ // Rank history 10, 9, 10, 10, 6, 8, 11, 12, 6, 8, 9, 7, 10, 6, 10, 8, 9, 8, 17, 13, 23, 18, 14, 18, 6, 8, 7, 11, 10, 8, 10 ], "trends": { "day": -1, // 1 day keyword movement "week": 2, // 1 week keyword movement "month": 0, // 30 days keyword movement "life": 66 // Lifetime keyword movement }, "crawled_at": 1716770343, // Timestamp of last update "updated_at": "2021-05-11T09:49:48+00:00", // Date and time of last update "is_paginated": 2, "currency_symbol": "€", // CPC currency "search_intents": { // Search intent % match to intent "commercial": 0.53532242, "informational": 0.847743, "navigational": null, "transactional": null } } } } ``` --- ### Delete single keyword `DELETE /api/v2/groups/{project_name}/keywords/{keyword_id}&date={single_date}` - Use this call todelete keywords from a project or group. Note that this cannot be undone and when deleted you lose all historic ranking data. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | | `keyword_id}&date={single_date` | path | Yes | | **Response (200):** ```json [object Object] ``` --- ### Retrieve all keywords and their data in project or group `GET /api/v2/groups/{project_name}/keywords/` Use this endpoint to fetch all keyword settings and ranking metrics for a specific **group** or **project**. This includes each keyword’s configuration, rank history, and associated metrics. By default, the API returns **20 results per page**. However, for best performance—especially when dealing with large datasets—we recommend setting the per_page parameter to **250** and paginating through results using the page parameter. #### **Example for a group or project with 500 keywords:** - **Request 1:** `https://app.keyword.com/api/v2/groups/[project_name]/keywords/?per_page=250&page=1` - **Request 2:** `https://app.keyword.com/api/v2/groups/[project_name]/keywords/?per_page=250&page=2` This method ensures faster responses and minimizes server load while retrieving bulk keyword data. > ⚠️ Note: If per_page is not specified, the default is 20 results per page. You can obtain each keyword_id after you’ve added a keyword to a group or project. This ID is used for other actions like updating or refreshing a specific keyword. **You can also collect the data for a single date by using the 'date' parameter.** **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | | `per_page` | query | No | 250 | | `page` | query | No | | | `date` | query | No | | **Response (200):** ```json { "data": [ { "type": "keyword", "id": "187181871", // Unique keyword id "attributes": { "project_id": 3057417, // Project or group id "category": "Disney", // Project name "url": "disney.com", // Tracked URL "auth": "9d8by579d8by579d8by5769d8by574", // Project Auth key for ViewKey "kw": "disneyland", // Keyword "source": 3, // Indicates how keyword was added to your project or group (1=API, 2=Keyword suggestions, 3=Manual, 4=Bulk import) "start": 76, // Keyword rank when keyword was added "notes": null, // Keyword notes "tags_count": 0, // Number of tags linked to keyword "tags": [], "tag": null, // Tag linked to keyword "region": "google.com", // Google region "language": "en", // Language "in_featured": false, // Indicates if domain is rannking in featured snippets "has_featured": false, // Indicates if keyword has any featured snippets "has_featured_url": "", // Indicates if domain is featured "ignore_local": true, // Indicates is local listings are ignored or tracked "ignore_featured": true, // Indicates if keyword tracking is set to ignore featured snippet "exact": false, // Indicates if you are tracking 'exac' or 'broad' domain for keyword "type": "se", // Set to 'se' "gmb": null, // Google My Bysiness "near": null, // Location "isfav": true, // Indicates if keyword is set to favorite "status": "ACTIVE", // Keyword state "clicks": 22, // Average number of clicks (Google Search Console) - If Google Console account not linked results will be displayed as "-1" "impressions": -1, // Impressions metri=c (Google Search Console) - If Google Console account not linked results will be displayed as "-1" "ctr": 1.34, // Click Through Rate (Google Searxh Console) "ms": 1500000, // Monthly search volume "competition": 0.073667314, // Competition metric (GoogleAds) "cpc": 0.83, // Average cos per click in US Dollars (GoogleAds) "gpage": 1, // Google Page "features": [], "grank": 10, // Current Google Rank position "grank_int": 5, // The numeric value of rank - If OTR it will show 0 "brank": 0, // Not used "best": 5, // Best ranking position since start "yrank": 0, // Not used "seocomp": 193000000, // Indicated the number of search results for that keyword "in_local_pack": false, // Indicates if ranking in local pack "rankingurl": "https://www.disney.com/", // URL that is ranking "grankhistory": [ // Ranking history 10, 14, 13, 14, 10, 10, 12, 11, 10, 11, 11, 12, 7, 11, 9, 9, 11, 12, 11, 7, 10, 8, 7, 10, 9, 10, 10, 8, 8 ], "trends": { // Keyword movement "day": 4, "week": 2, "month": -2, "life": 66 }, "updated_at": "2021-05-11T09:49:48-04:00", // Last date and time keyword was edited "crawled_at": 1681575247 // Last time keyword rank was updated } }, { "type": "keyword", "id": "196460452", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "escape to fantasy land where magical dreams are made to come true", "source": 3, "start": 58, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 0, "competition": 0, "cpc": 0, "gpage": 10, "features": [], "grank": 98, "brank": 0, "best": 84, "yrank": 0, "seocomp": 26600000, "in_local_pack": false, "rankingurl": "https://www.disney.com/", "grankhistory": [ 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "trends": { "day": 2, "week": 2, "month": 2, "life": -40 }, "updated_at": "2021-08-27T04:25:25-04:00", "crawled_at": 1681575233 } }, { "type": "keyword", "id": "196465020", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "plutos best friend", "source": 3, "start": 14, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 0, "competition": 0, "cpc": 0, "gpage": 2, "features": [], "grank": 17, "brank": 0, "best": 2, "yrank": 0, "seocomp": 19500000, "in_local_pack": false, "rankingurl": "https://mickey.disney.com/pluto", "grankhistory": [ 17, 16, 17, 23, 24, 23, 24, 24, 24, 24, 26, 27, 20, 21, 20, 20, 22, 21, 18, 15, 38, 18, 19, 25, 21, 21, 21, 25, 21, 23, 29 ], "trends": { "day": -1, "week": 7, "month": 12, "life": -3 }, "updated_at": "2021-08-27T05:24:28-04:00", "crawled_at": 1681575252 } }, { "type": "keyword", "id": "196465030", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "donald duck", "source": 3, "start": 3, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 246000, "competition": 0.876595551, "cpc": 0.19, "gpage": 1, "features": [], "grank": 3, "brank": 0, "best": 2, "yrank": 0, "seocomp": 46400000, "in_local_pack": false, "rankingurl": "https://mickey.disney.com/donald", "grankhistory": [ 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3 ], "trends": { "day": 1, "week": 0, "month": 0, "life": 0 }, "updated_at": "2021-08-27T05:34:55-04:00", "crawled_at": 1681575230 } }, { "type": "keyword", "id": "199270519", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "daisy duck", "source": 3, "start": 3, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 60500, "competition": 0.946417061, "cpc": 0.2, "gpage": 1, "features": [], "grank": 3, "brank": 0, "best": 3, "yrank": 0, "seocomp": 35100000, "in_local_pack": false, "rankingurl": "https://mickey.disney.com/daisy", "grankhistory": [ 3, 3, 3, 3, 3, 9, 3, 3, 3, 3, 3, 3, 3, 16, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 ], "trends": { "day": 0, "week": 0, "month": 0, "life": 0 }, "updated_at": "2021-09-27T10:21:21-04:00", "crawled_at": 1681575224 } }, { "type": "keyword", "id": "200137814", "attributes": { "project_id": 3057417, "category": "Disney", "url": "www.waltdisneystudios.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "disney studios", "source": 3, "start": 1, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 6600, "competition": 0.026849792, "cpc": 0.71, "gpage": 0, "features": [ "local_pack", "video" ], "grank": 0, "brank": 0, "best": 0, "yrank": 0, "seocomp": 307000000, "in_local_pack": false, "rankingurl": "NOT FOUND", "grankhistory": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "trends": { "day": 0, "week": 0, "month": 0, "life": -99 }, "updated_at": "2021-10-07T08:58:28-04:00", "crawled_at": 1681575192 } }, { "type": "keyword", "id": "200482118", "attributes": { "project_id": 3057417, "category": "Disney", "url": "www.disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "i love disney", "source": 3, "start": 20, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 260, "competition": 0.0681474, "cpc": 0.95, "gpage": 2, "features": [], "grank": 13, "brank": 0, "best": 11, "yrank": 0, "seocomp": 902000000, "in_local_pack": false, "rankingurl": "https://www.disney.com/", "grankhistory": [ 13, 11, 20, 19, 12, 23, 27, 26, 26, 32, 30, 28, 28, 22, 21, 19, 23, 22, 17, 14, 22, 20, 16, 14, 15, 14, 18, 22, 26, 22, 20 ], "trends": { "day": -2, "week": 13, "month": 7, "life": 7 }, "updated_at": "2021-10-11T05:12:57-04:00", "crawled_at": 1681575212 } }, { "type": "keyword", "id": "200482121", "attributes": { "project_id": 3057417, "category": "Disney", "url": "www.disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "disney princesses", "source": 3, "start": 1, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 673000, "competition": 0.917035795, "cpc": 0.22, "gpage": 1, "features": [], "grank": 1, "brank": 0, "best": 1, "yrank": 0, "seocomp": 0, "in_local_pack": false, "rankingurl": "https://princess.disney.com/", "grankhistory": [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ], "trends": { "day": 0, "week": 0, "month": 0, "life": 0 }, "updated_at": "2021-10-11T05:14:53-04:00", "crawled_at": 1681575201 } }, { "type": "keyword", "id": "200482127", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "pluto", "source": 3, "start": 31, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 246000, "competition": 0.046498433, "cpc": 1.55, "gpage": 6, "features": [ "video" ], "grank": 58, "brank": 0, "best": 53, "yrank": 0, "seocomp": 184000000, "in_local_pack": false, "rankingurl": "https://mickey.disney.com/pluto", "grankhistory": [ 58, 54, 54, 54, 54, 54, 54, 54, 54, 67, 67, 65, 64, 64, 60, 60, 63, 63, 71, 65, 65, 65, 59, 59, 61, 57, 57, 57, 53, 58, 66 ], "trends": { "day": -4, "week": -4, "month": 8, "life": -27 }, "updated_at": "2021-10-11T05:29:40-04:00", "crawled_at": 1681575219 } }, { "type": "keyword", "id": "203186024", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "simba", "source": 3, "start": 0, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 90500, "competition": 0.046986335, "cpc": 0.54, "gpage": 0, "features": [ "local_pack" ], "grank": 0, "brank": 0, "best": 0, "yrank": 0, "seocomp": 99400000, "in_local_pack": false, "rankingurl": "NOT FOUND", "grankhistory": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 83, 83, 83, 83, 81, 0, 86, 86, 80, 83 ], "trends": { "day": 0, "week": 0, "month": -17, "life": 0 }, "updated_at": "2021-11-05T06:54:39-04:00", "crawled_at": 1681575199 } }, { "type": "keyword", "id": "215745876", "attributes": { "project_id": 3057417, "category": "Disney", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "disney orlando", "source": 3, "start": 23, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": "Orlando, FL, USA", "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 49500, "competition": 0.20008009, "cpc": 1.67, "gpage": 1, "features": [ "adwords_top" ], "grank": 6, "brank": 0, "best": 5, "yrank": 0, "seocomp": 116000000, "in_local_pack": false, "rankingurl": "https://www.disney.com/", "grankhistory": [ 6, 13, 13, 7, 8, 6, 8, 11, 9, 7, 8, 9, 8, 8, 7, 45, 14, 12, 14, 7, 18, 7, 15, 15, 28, 33, 30, 37, 29, 22 ], "trends": { "day": 7, "week": 5, "month": 16, "life": 17 }, "updated_at": "2022-03-01T04:32:36-05:00", "crawled_at": 1681575202 } }, { "type": "keyword", "id": "192051806", "attributes": { "project_id": 3144454, "category": "Disney[sub]Disney Classics", "url": "thewaltdisneycompany.com/about/", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "mickey mouse", "source": 3, "start": 0, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": true, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 2740000, "competition": 0.999405739, "cpc": 0.2, "gpage": 0, "features": [ "video" ], "grank": 0, "brank": 0, "best": 0, "yrank": 0, "seocomp": 189000000, "in_local_pack": false, "rankingurl": "NOT FOUND", "grankhistory": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "trends": { "day": 0, "week": 0, "month": 0, "life": 0 }, "updated_at": "2021-07-09T08:08:23-04:00", "crawled_at": 1681575202 } }, { "type": "keyword", "id": "192051807", "attributes": { "project_id": 3144454, "category": "Disney[sub]Disney Classics", "url": "thewaltdisneycompany.com/about/", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "minnie mouse", "source": 3, "start": 0, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": true, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 1000000, "competition": 0.999558252, "cpc": 0.25, "gpage": 0, "features": [], "grank": 0, "brank": 0, "best": 0, "yrank": 0, "seocomp": 60500000, "in_local_pack": false, "rankingurl": "NOT FOUND", "grankhistory": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "trends": { "day": 0, "week": 0, "month": 0, "life": 0 }, "updated_at": "2021-07-09T08:08:23-04:00", "crawled_at": 1681575196 } }, { "type": "keyword", "id": "200482128", "attributes": { "project_id": 3144454, "category": "Disney[sub]Disney Classics", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "pluto", "source": 3, "start": 33, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 246000, "competition": 0.046498433, "cpc": 1.55, "gpage": 7, "features": [ "video" ], "grank": 62, "brank": 0, "best": 53, "yrank": 0, "seocomp": 208000000, "in_local_pack": false, "rankingurl": "https://mickey.disney.com/pluto", "grankhistory": [ 62, 59, 59, 59, 59, 58, 58, 58, 61, 61, 65, 66, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 65, 65, 59, 55, 55, 53, 55, 59, 62 ], "trends": { "day": -3, "week": -4, "month": 0, "life": -29 }, "updated_at": "2021-10-11T05:29:58-04:00", "crawled_at": 1681575245 } }, { "type": "keyword", "id": "218891218", "attributes": { "project_id": 3144454, "category": "Disney[sub]Disney Classics", "url": "disney.com", "auth": "9d8by579d8by579d8by5769d8by574", "kw": "little mermaid", "source": 3, "start": 7, "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.com", "language": "en", "in_featured": false, "has_featured": false, "has_featured_url": "", "ignore_local": true, "ignore_featured": true, "exact": false, "type": "se", "gmb": null, "near": null, "isfav": false, "status": "ACTIVE", "clicks": -1, "impressions": -1, "ctr": -1, "ms": 450000, "competition": 0.486231894, "cpc": 0.23, "gpage": 1, "features": [], "grank": 4, "brank": 0, "best": 3, "yrank": 0, "seocomp": 192000000, "in_local_pack": false, "rankingurl": "https://movies.disney.com/the-little-mermaid-2023", "grankhistory": [ 4, 3, 6, 7, 6, 5, 6, 5, 4, 4, 4, 4, 3, 4, 4, 4, 5, 3, 6, 5, 4, 5, 3, 3, 7, 3, 7, 4, 7, 9 ], "trends": { "day": -1, "week": 1, "month": 5, "life": 3 }, "updated_at": "2022-04-06T09:19:14-04:00", "crawled_at": 1681575193 } } ], "meta": { "domains": [ // List of doimains being tracked in project or group "disney.com", "waltdisneystudios.com", "thewaltdisneycompany.com" ], "types": [ "se" ], "pagination": { // Used for UI only "total": 15, "count": 15, "per_page": 20, "current_page": 1, "total_pages": 1 } }, "links": { // Project ViewKey links "self": "http://app.keyword.com/api/v2/groups/Disney/keywords?q=%2Fapi%2Fv2%2Fgroups%2FDisney%2Fkeywords%2F&api_token=9d8by579d8by579d8by5769d8by574&page=1", "first": "http://app.keyword.com/api/v2/groups/Disney/keywords?q=%2Fapi%2Fv2%2Fgroups%2FDisney%2Fkeywords%2F&api_token=9d8by579d8by579d8by5769d8by574&page=1", "last": "http://app.keyword.com/api/v2/groups/Disney/keywords?q=%2Fapi%2Fv2%2Fgroups%2FDisney%2Fkeywords%2F&api_token=9d8by579d8by579d8by5769d8by574&page=1" } } ``` --- ### Retrieve Google ranking history for the last 180 days `POST /api/v2/keywords/chart` Returns the daily ranking position for each specified keyword for the number of days prior to today. You can specify up to **180 days** of history using the limit query parameter. Rankings are grouped by keyword ID and domain and include both chart-compatible date formats (Date.UTC) and raw rank history with URLs. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `action` | query | No | | | `limit` | query | No | | **Request Body:** ```json [object Object] ``` **Response (200):** ```json { "data": [ { "kwid": 196465030, "data": [ [ { "name": "disney.com", // Project name "data": [ [ "Date.UTC(2022,10,7)", null // Date and ranking position ], [ "Date.UTC(2022,10,8)", null ], [ "Date.UTC(2022,10,9)", null ], [ "Date.UTC(2022,10,10)", null ], [ "Date.UTC(2022,10,11)", null ], [ "Date.UTC(2022,10,12)", null ], [ "Date.UTC(2022,10,13)", null ], [ "Date.UTC(2022,10,14)", null ], [ "Date.UTC(2022,10,15)", null ], [ "Date.UTC(2022,10,16)", null ], [ "Date.UTC(2022,10,17)", null ], [ "Date.UTC(2022,10,18)", null ], [ "Date.UTC(2022,10,19)", null ], [ "Date.UTC(2022,10,20)", null ], [ "Date.UTC(2022,10,21)", null ], [ "Date.UTC(2022,10,22)", null ], [ "Date.UTC(2022,10,23)", null ], [ "Date.UTC(2022,10,24)", null ], [ "Date.UTC(2022,10,25)", null ], [ "Date.UTC(2022,10,26)", null ], [ "Date.UTC(2022,10,27)", null ], [ "Date.UTC(2022,10,28)", null ], [ "Date.UTC(2022,10,29)", null ], [ "Date.UTC(2022,10,30)", null ], [ "Date.UTC(2022,11,1)", null ], [ "Date.UTC(2022,11,2)", null ], [ "Date.UTC(2022,11,3)", null ], [ "Date.UTC(2022,11,4)", null ], [ "Date.UTC(2022,11,5)", null ], [ "Date.UTC(2022,11,6)", null ], [ "Date.UTC(2022,11,7)", null ], [ "Date.UTC(2022,11,8)", null ], [ "Date.UTC(2022,11,9)", null ], [ "Date.UTC(2022,11,10)", null ], [ "Date.UTC(2022,11,11)", null ], [ "Date.UTC(2022,11,12)", null ], [ "Date.UTC(2022,11,13)", null ], [ "Date.UTC(2022,11,14)", 3 ], [ "Date.UTC(2022,11,15)", null ], [ "Date.UTC(2022,11,16)", 3 ], [ "Date.UTC(2022,11,17)", 3 ], [ "Date.UTC(2022,11,18)", 3 ], [ "Date.UTC(2022,11,19)", 3 ], [ "Date.UTC(2022,11,20)", 3 ], [ "Date.UTC(2022,11,21)", 3 ], [ "Date.UTC(2022,11,22)", 3 ], [ "Date.UTC(2022,11,23)", 3 ], [ "Date.UTC(2022,11,24)", 3 ], [ "Date.UTC(2022,11,25)", 3 ], [ "Date.UTC(2022,11,26)", 3 ], [ "Date.UTC(2022,11,27)", 3 ], [ "Date.UTC(2022,11,28)", 3 ], [ "Date.UTC(2022,11,29)", 3 ], [ "Date.UTC(2022,11,30)", 3 ], [ "Date.UTC(2022,11,31)", 3 ], [ "Date.UTC(2023,0,1)", 3 ], [ "Date.UTC(2023,0,2)", 3 ], [ "Date.UTC(2023,0,3)", 3 ], [ "Date.UTC(2023,0,4)", 3 ], [ "Date.UTC(2023,0,5)", 3 ], [ "Date.UTC(2023,0,6)", 3 ], [ "Date.UTC(2023,0,7)", 3 ], [ "Date.UTC(2023,0,8)", 3 ], [ "Date.UTC(2023,0,9)", 3 ], [ "Date.UTC(2023,0,10)", 3 ], [ "Date.UTC(2023,0,11)", 3 ], [ "Date.UTC(2023,0,12)", 3 ], [ "Date.UTC(2023,0,13)", 3 ], [ "Date.UTC(2023,0,14)", 3 ], [ "Date.UTC(2023,0,15)", 3 ], [ "Date.UTC(2023,0,16)", 3 ], [ "Date.UTC(2023,0,17)", 3 ], [ "Date.UTC(2023,0,18)", 4 ], [ "Date.UTC(2023,0,19)", 3 ], [ "Date.UTC(2023,0,20)", 3 ], [ "Date.UTC(2023,0,21)", 3 ], [ "Date.UTC(2023,0,22)", 3 ], [ "Date.UTC(2023,0,23)", 3 ], [ "Date.UTC(2023,0,24)", 3 ], [ "Date.UTC(2023,0,25)", 3 ], [ "Date.UTC(2023,0,26)", 3 ], [ "Date.UTC(2023,0,27)", 3 ], [ "Date.UTC(2023,0,28)", 3 ], [ "Date.UTC(2023,0,29)", 3 ], [ "Date.UTC(2023,0,30)", 3 ], [ "Date.UTC(2023,0,31)", 3 ], [ "Date.UTC(2023,1,1)", 3 ], [ "Date.UTC(2023,1,2)", 3 ], [ "Date.UTC(2023,1,3)", 3 ], [ "Date.UTC(2023,1,4)", 4 ], [ "Date.UTC(2023,1,5)", 4 ], [ "Date.UTC(2023,1,6)", 3 ], [ "Date.UTC(2023,1,7)", 3 ], [ "Date.UTC(2023,1,8)", 4 ], [ "Date.UTC(2023,1,9)", 3 ], [ "Date.UTC(2023,1,10)", 4 ], [ "Date.UTC(2023,1,11)", 4 ], [ "Date.UTC(2023,1,12)", 3 ], [ "Date.UTC(2023,1,13)", 3 ], [ "Date.UTC(2023,1,14)", 3 ], [ "Date.UTC(2023,1,15)", 4 ], [ "Date.UTC(2023,1,16)", 4 ], [ "Date.UTC(2023,1,17)", 3 ], [ "Date.UTC(2023,1,18)", 3 ], [ "Date.UTC(2023,1,19)", 3 ], [ "Date.UTC(2023,1,20)", 3 ], [ "Date.UTC(2023,1,21)", 3 ], [ "Date.UTC(2023,1,22)", 3 ], [ "Date.UTC(2023,1,23)", 3 ], [ "Date.UTC(2023,1,24)", 3 ], [ "Date.UTC(2023,1,25)", 4 ], [ "Date.UTC(2023,1,26)", 4 ], [ "Date.UTC(2023,1,27)", 4 ], [ "Date.UTC(2023,1,28)", 3 ], [ "Date.UTC(2023,2,1)", 4 ], [ "Date.UTC(2023,2,2)", 3 ], [ "Date.UTC(2023,2,3)", 3 ], [ "Date.UTC(2023,2,4)", 3 ], [ "Date.UTC(2023,2,5)", 4 ], [ "Date.UTC(2023,2,6)", 4 ], [ "Date.UTC(2023,2,7)", 3 ], [ "Date.UTC(2023,2,8)", 3 ], [ "Date.UTC(2023,2,9)", 4 ], [ "Date.UTC(2023,2,10)", 4 ], [ "Date.UTC(2023,2,11)", 4 ], [ "Date.UTC(2023,2,12)", 4 ], [ "Date.UTC(2023,2,13)", 4 ], [ "Date.UTC(2023,2,14)", 2 ], [ "Date.UTC(2023,2,15)", 2 ], [ "Date.UTC(2023,2,16)", 3 ], [ "Date.UTC(2023,2,17)", 4 ], [ "Date.UTC(2023,2,18)", 4 ], [ "Date.UTC(2023,2,19)", 4 ], [ "Date.UTC(2023,2,20)", 4 ], [ "Date.UTC(2023,2,21)", 4 ], [ "Date.UTC(2023,2,22)", 4 ], [ "Date.UTC(2023,2,23)", 4 ], [ "Date.UTC(2023,2,24)", 4 ], [ "Date.UTC(2023,2,25)", 3 ], [ "Date.UTC(2023,2,26)", 3 ], [ "Date.UTC(2023,2,27)", 3 ], [ "Date.UTC(2023,2,28)", 3 ], [ "Date.UTC(2023,2,29)", 3 ], [ "Date.UTC(2023,2,30)", 3 ], [ "Date.UTC(2023,2,31)", 3 ], [ "Date.UTC(2023,3,1)", 3 ], [ "Date.UTC(2023,3,2)", 3 ], [ "Date.UTC(2023,3,3)", 3 ], [ "Date.UTC(2023,3,4)", 3 ], [ "Date.UTC(2023,3,5)", 3 ], [ "Date.UTC(2023,3,6)", 3 ], [ "Date.UTC(2023,3,7)", 3 ], [ "Date.UTC(2023,3,8)", 3 ], [ "Date.UTC(2023,3,9)", 3 ], [ "Date.UTC(2023,3,10)", 3 ], [ "Date.UTC(2023,3,11)", 3 ], [ "Date.UTC(2023,3,12)", 3 ], [ "Date.UTC(2023,3,13)", 3 ], [ "Date.UTC(2023,3,14)", 4 ], [ "Date.UTC(2023,3,15)", 3 ], [ "Date.UTC(2023,3,16)", 3 ], [ "Date.UTC(2023,3,17)", 3 ], [ "Date.UTC(2023,3,18)", 3 ], [ "Date.UTC(2023,3,19)", 4 ], [ "Date.UTC(2023,3,20)", 4 ], [ "Date.UTC(2023,3,21)", 4 ], [ "Date.UTC(2023,3,22)", 2 ], [ "Date.UTC(2023,3,23)", 3 ], [ "Date.UTC(2023,3,24)", 3 ], [ "Date.UTC(2023,3,25)", 3 ], [ "Date.UTC(2023,3,26)", 3 ], [ "Date.UTC(2023,3,27)", 3 ], [ "Date.UTC(2023,3,28)", 3 ], [ "Date.UTC(2023,3,29)", 3 ], [ "Date.UTC(2023,3,30)", 3 ], [ "Date.UTC(2023,4,1)", 3 ], [ "Date.UTC(2023,4,2)", 3 ], [ "Date.UTC(2023,4,3)", 4 ], [ "Date.UTC(2023,4,4)", 4 ], [ "Date.UTC(2023,4,5)", 4 ] ], "visible": true, "pointInterval": 86400000, "showInLegend": true, "zIndex": 999, "turboThreshold": 0 } ], [], "disney.com|donald duck|Disney|google.com|en", "196465030|7ccd82a54ff044850915361df253670c", { "days": 616, "rankingurls": [ { "date": "2023-05-05", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-05-04", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-05-03", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-05-02", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-05-01", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-30", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-29", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-28", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-27", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-26", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-25", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-24", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-23", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-22", "rank": 2, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-21", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-20", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-19", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-18", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-17", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-16", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-15", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-14", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-13", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-12", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-11", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-10", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-09", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-08", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-07", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-06", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-05", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-04", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-03", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-02", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-04-01", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-31", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-30", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-29", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-28", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-27", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-26", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-25", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-24", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-23", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-22", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-21", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-20", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-19", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-18", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-17", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-16", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-15", "rank": 2, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-14", "rank": 2, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-13", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-12", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-11", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-10", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-09", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-08", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-07", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-06", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-05", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-04", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-03", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-02", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-03-01", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-28", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-27", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-26", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-25", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-24", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-23", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-22", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-21", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-20", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-19", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-18", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-17", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-16", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-15", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-14", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-13", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-12", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-11", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-10", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-09", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-08", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-07", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-06", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-05", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-04", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-03", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-02", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-02-01", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-31", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-30", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-29", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-28", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-27", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-26", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-25", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-24", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-23", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-22", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-21", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-20", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-19", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-18", "rank": 4, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-17", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-16", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-15", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-14", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-13", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-12", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-11", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-10", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-09", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-08", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-07", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-06", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-05", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-04", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-03", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-02", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2023-01-01", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-31", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-30", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-29", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-28", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-27", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-26", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-25", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-24", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-23", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-22", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-21", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-20", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-19", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-18", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-17", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-16", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-15", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-14", "rank": 3, "rankingurl": "https://mickey.disney.com/donald" }, { "date": "2022-12-13", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-12", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-11", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-10", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-09", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-08", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-07", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-06", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-05", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-04", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-03", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-02", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-12-01", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-30", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-29", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-28", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-27", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-26", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-25", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-24", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-23", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-22", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-21", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-20", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-19", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-18", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-17", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-16", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-15", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-14", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-13", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-12", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-11", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-10", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-09", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-08", "rank": null, "rankingurl": "NOT FOUND" }, { "date": "2022-11-07", "rank": null, "rankingurl": "NOT FOUND" } ] } ] } ] } ``` --- ### Retrieve top 100 list of competitors for single keyword `GET /api/v2/metrics/{project_name}/competitors/{keyword_id}/history` **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | | `keyword_id` | path | Yes | | | `dateRange` | query | No | | **Response (200):** ```json { "data": [ { "rank": 7, // Your current rank for specified keyword "results": [ { "resultType": "organic", // Type of results "url": "https://disneyland.disney.go.com/", // Ranking URL "title": "Disneyland® Official Site" // Title }, { "resultType": "organic", "url": "https://en.wikipedia.org/wiki/Disneyland", "title": "Disneyland - Wikipedia" }, { "resultType": "organic", "url": "https://www.visitanaheim.org/things-to-do/theme-parks/disneyland/", "title": "Disneyland® Park in Anaheim, CA | Dining & Attractions" }, { "resultType": "organic", "url": "https://disneylandnews.com/", "title": "Disneyland News" }, { "resultType": "organic", "url": "https://twitter.com/Disneyland", "title": "Disneyland Resort" }, { "resultType": "organic", "url": "https://www.tokyodisneyresort.jp/en/", "title": "Tokyo Disney Resort" }, { "resultType": "organic", "url": "https://www.disney.com/", "title": "Disney.com | The official home for all things Disney" }, { "resultType": "organic", "url": "https://www.sfgate.com/disneyland/article/woman-allegedly-hid-in-disneyland-ride-18164029.php", "title": "Woman allegedly hid in Disneyland ride to avoid arrest" }, { "resultType": "organic", "url": "https://www.ocregister.com/2023/06/22/disneyland-to-begin-rolling-opening-of-san-fransokyo-square-in-july/", "title": "Disneyland to begin rolling opening of San Fransokyo ..." }, { "resultType": "organic", "url": "https://www.travelandleisure.com/trip-ideas/disney-vacations/disneyland-vs-disney-world", "title": "Disneyland vs. Walt Disney World: Which Disney Resort Is ..." }, { "resultType": "organic", "url": "https://www.adventuresbydisney.com/north-america/southern-california-disneyland-tour/", "title": "Disneyland Resort and Southern California Escape" }, { "resultType": "organic", "url": "https://www.wdwinfo.com/disneyland/", "title": "An Unofficial Guide to the Disneyland Resort in California" }, { "resultType": "organic", "url": "https://www.undercovertourist.com/los-angeles/disneyland-resort/", "title": "Disneyland tickets discount | Disneyland Crowd Calendar" }, { "resultType": "organic", "url": "https://touringplans.com/disneyland-resort", "title": "Disneyland" }, { "resultType": "organic", "url": "https://www.shopdisney.com/parks/disneyland/", "title": "Disneyland Apparel & Merchandise" }, { "resultType": "organic", "url": "https://www.disneyworld.eu/", "title": "Walt Disney World Resort in Orlando, Florida" }, { "resultType": "organic", "url": "https://www.trip.com/travel-guide/attraction/anaheim/disneyland-park-10758975/", "title": "Reviews of Disneyland Park" }, { "resultType": "organic", "url": "https://www.linkedin.com/company/disneyland-resort", "title": "Disneyland Resort" }, { "resultType": "organic", "url": "https://ktla.com/news/theme-parks/disneyland/san-fransokyo-square-at-disneyland-resort-to-open-this-summer-new-menu-items-coming-in-july/", "title": "'San Fransokyo Square' at Disneyland Resort to open this ..." }, { "resultType": "organic", "url": "https://www.disboards.com/forums/disneyland-california.26/", "title": "Disneyland (California) | The DIS Disney Discussion Forums" }, { "resultType": "organic", "url": "https://insidethemagic.net/2023/06/disneyland-dysfunction-guest-report-jc1/", "title": "Guest Bemoans Disneyland \"Dysfunction,\" Reports ..." }, { "resultType": "organic", "url": "https://www.travelinusa.us/disneyland-los-angeles/", "title": "Things to do in Disneyland Park California - Travel in USA" }, { "resultType": "organic", "url": "https://www.micechat.com/359149-disneyland-miceshots-ariels-under-sea-adventures/", "title": "Disneyland MiceShots: Ariel's Under Sea Adventures" }, { "resultType": "organic", "url": "https://thepointsguy.com/guide/best-rides-disneyland/", "title": "The 14 best rides at Disneyland" }, { "resultType": "organic", "url": "https://www.expedia.com/things-to-do/disneyland-resort-tickets.a181752.activity-details", "title": "Disneyland Resort Tickets" }, { "resultType": "organic", "url": "https://www.discogs.com/label/35242-Disneyland", "title": "Disneyland Label | Releases" }, { "resultType": "organic", "url": "https://arestravel.com/attraction/single/722/18", "title": "Disneyland® Resort - Buy Discount Tickets, Tours, and ..." }, { "resultType": "organic", "url": "https://thisfairytalelife.com/new-disneyland-2023/", "title": "What's New at Disneyland in 2023" }, { "resultType": "organic", "url": "https://www.rundisney.com/events/", "title": "Races & Events" }, { "resultType": "organic", "url": "https://disneylanddaily.com/", "title": "Disneyland Daily | Practically Perfect Planning" }, { "resultType": "organic", "url": "https://www.parksavers.com/13-disneyland-must-do-experiences-for-a-magical-vacation/", "title": "13 Disneyland Must-Do Experiences for a Magical Vacation" }, { "resultType": "organic", "url": "https://www.usatoday.com/story/travel/experience/america/theme-parks/2021/04/30/disneyland-reopening-2021-disney-california-parks-open-after-covid-closure/4881772001/", "title": "Disneyland reopens: Disney parks in California open post ..." }, { "resultType": "organic", "url": "https://www.disneytouristblog.com/discount-disneyland-tickets-summer-fall-2023-california-residents/", "title": "Summer & Fall 2023 California Resident Discount ..." }, { "resultType": "organic", "url": "https://lajollamom.com/web-stories/disneyland-on-a-budget/", "title": "6 Ways to Save Money at Disneyland Resort" }, { "resultType": "organic", "url": "https://blog.trekaroo.com/disneyland-tips/", "title": "78 Great Disneyland Tips and Tricks for First Timers" }, { "resultType": "organic", "url": "https://wdwnt.com/category/parks-resorts/disneyland-resort/", "title": "Disneyland Resort Archives - WDW News Today" }, { "resultType": "organic", "url": "https://www.independent.co.uk/topic/disneyland", "title": "Disneyland - latest news, breaking stories and comment" }, { "resultType": "organic", "url": "https://mickeyvisit.com/disneyland-in-april/", "title": "Disneyland in April 2023: Easter Fun, Food & Wine Festival ..." }, { "resultType": "organic", "url": "https://www.disneyfoodblog.com/disneyland-restaurants-guide/", "title": "Disneyland Restaurants Guide | the disney food blog" }, { "resultType": "organic", "url": "https://abc7.com/disneyland-orange-county-anaheim-disney/13266674/", "title": "Disneyland lays out long-term expansion proposal to OC ..." }, { "resultType": "organic", "url": "https://www.getyourguide.com/paris-l16/paris-disneyland-1-day-ticket-t395320/", "title": "Paris: Disneyland 1-Day Ticket" }, { "resultType": "organic", "url": "https://tripswithtykes.com/special-events-at-disneyland-by-season/", "title": "Special Events at Disneyland: The Complete Guide for ..." }, { "resultType": "organic", "url": "https://www.visitbuenapark.com/business/disneyland", "title": "Disneyland Park" }, { "resultType": "organic", "url": "https://www.amazon.com/Unofficial-Guide-Disneyland-2023-Guides/dp/1628091339", "title": "The Unofficial Guide to Disneyland 2023 ..." }, { "resultType": "organic", "url": "https://www.disneylandforward.com/", "title": "DisneylandForward" }, { "resultType": "organic", "url": "https://www.hongkongdisneyland.com/destinations/theme-park/", "title": "Hong Kong Disneyland Park" }, { "resultType": "organic", "url": "https://www.yesterland.com/", "title": "Yesterland - Disneyland History & Other Disney Park History" }, { "resultType": "organic", "url": "https://www.disneygiftcard.com/info", "title": "Info & FAQ | Disney Gift Card" }, { "resultType": "organic", "url": "https://abc7news.com/disneyland-ticket-offer-disney-parks-california-summer-ca-resident-tickets/13351453/", "title": "Disneyland Resort announces summer 2023 ticket offer for ..." }, { "resultType": "organic", "url": "https://theparkprodigy.com/tickets/disneyland-discount/", "title": "Buy Cheap Disneyland Tickets 2023" }, { "resultType": "organic", "url": "https://www.hianaheim.com/", "title": "Holiday Inn & Suites Anaheim: Disneyland Resort Hotel" }, { "resultType": "organic", "url": "https://www.disneydining.com/disney-guests-stealing-disney-magic-bwb1/", "title": "Rude Disney Guests \"Stealing Disney Magic\"" }, { "resultType": "organic", "url": "https://disneydose.com/tips-for-visiting-the-disneyland-resort-this-holiday-season/", "title": "Best Disneyland Christmas 2023 Tips and Tricks Guide" }, { "resultType": "organic", "url": "https://www.marriott.com/en-us/hotels/snajw-jw-marriott-anaheim-resort/overview/disneyland-resort/", "title": "Disneyland® Park Resort - JW Marriott, Anaheim" }, { "resultType": "organic", "url": "https://www.jetbluevacations.com/resorts/disneyland", "title": "Disneyland® Resort Vacation Packages" }, { "resultType": "organic", "url": "https://www.mceconferences.com/destination/disneyland-resort-california/", "title": "Disneyland Resort" }, { "resultType": "organic", "url": "https://www.istockphoto.com/photos/disneyland-california", "title": "Disneyland California Pictures, Images and Stock Photos" }, { "resultType": "organic", "url": "https://www.target.com/p/disneyland-resort-3-day-1-park-per-day-ticket-with-genie-service-435-ages-10/-/A-87870658", "title": "Disneyland Resort 3-Day 1-Park Per Day Ticket with ..." }, { "resultType": "organic", "url": "https://magicguides.com/disneyland-map/", "title": "Disneyland / California Adventure Map" }, { "resultType": "organic", "url": "https://www.disneyholidays.co.uk/disneyland-paris/", "title": "Disneyland® Paris | Disney holidays from ..." }, { "resultType": "organic", "url": "https://disneyconnect.com/dpep/news-category/disneyland-resort/", "title": "Disneyland Resort Archives |" }, { "resultType": "organic", "url": "https://www.costcotravel.com/Experiences/Disney/Disneyland-Resort", "title": "Disneyland Resort" }, { "resultType": "organic", "url": "https://www.instagram.com/disneyland/?hl=en", "title": "Disneyland (@disneyland) • Instagram photos and videos" }, { "resultType": "organic", "url": "https://www.facebook.com/Disneyland/", "title": "Disneyland" }, { "resultType": "organic", "url": "https://www.youtube.com/channel/UCuRtXPHmnpkZetkb8ft7mzw", "title": "Disneyland Resort" }, { "resultType": "organic", "url": "https://www.tripadvisor.com/Tourism-g19903898-Disneyland_Resort_California-Vacations.html", "title": "Disneyland Resort 2023: Best Places to Visit" }, { "resultType": "organic", "url": "https://www.reddit.com/r/Disneyland/", "title": "r/Disneyland" }, { "resultType": "organic", "url": "https://www.disneymeetingsandevents.com/disneyland/", "title": "Meetings & Events at Disneyland Resort" }, { "resultType": "organic", "url": "https://www.discoverlosangeles.com/things-to-do/disneyland%C2%AE-park", "title": "Disneyland® Park | Discover Los Angeles" }, { "resultType": "organic", "url": "https://www.lonelyplanet.com/usa/california/disneyland-and-anaheim", "title": "Disneyland Resort travel" }, { "resultType": "organic", "url": "https://parksjobs.disneycareers.com/disneyland-resort", "title": "Search jobs at Disneyland Resort - California" }, { "resultType": "organic", "url": "https://www.visitcalifornia.com/experience/know-you-go-disneyland-resort/", "title": "Know Before You Go: Disneyland Resort in Anaheim" }, { "resultType": "organic", "url": "https://www.disneylandparis.com/en-usd/", "title": "Disneyland Paris - tickets, deals, family holidays | Disneyland ..." }, { "resultType": "organic", "url": "https://www.getawaytoday.com/tickets/disneyland-resort", "title": "Discount DISNEYLAND® Tickets & Family Vacation ..." }, { "resultType": "organic", "url": "https://disney.fandom.com/wiki/Disneyland", "title": "Disneyland | Disney Wiki - Fandom" }, { "resultType": "organic", "url": "https://www.foxla.com/news/disneyland-california-residents-special-ticket-offer", "title": "Disneyland announces California resident ticket offer" }, { "resultType": "organic", "url": "https://www.shanghaidisneyresort.com/en/", "title": "Shanghai Disneyland" }, { "resultType": "organic", "url": "https://www.disneylandparis.com/en-usd/destinations/disneyland-park/", "title": "Disneyland Park" }, { "resultType": "organic", "url": "https://apps.apple.com/us/app/disneyland/id1022164656", "title": "Disneyland® on the App Store" }, { "resultType": "organic", "url": "https://play.google.com/store/apps/details?id=com.disney.wdpro.dlr&hl=en_US&gl=US", "title": "Disneyland® - Apps on Google Play" }, { "resultType": "organic", "url": "https://www.klook.com/en-US/blog/disneyland-california-adventure-guide/", "title": "Your Ultimate Guide to Disneyland Park and Disney ..." }, { "resultType": "organic", "url": "https://disneylandtourguide.com/only-1-day-at-disneyland-how-to-fit-in-all-the-rides/", "title": "Only 1 Day at Disneyland how to fit in all the rides" }, { "resultType": "organic", "url": "https://www.dailynews.com/things-to-do/amusement-parks/disneyland/", "title": "Disneyland" }, { "resultType": "organic", "url": "https://en.wikivoyage.org/wiki/Disneyland", "title": "Disneyland – Travel guide at Wikivoyage" }, { "resultType": "organic", "url": "https://dlnewstoday.com/", "title": "Disneyland News Today: Home" }, { "resultType": "organic", "url": "https://www.latimes.com/lifestyle/story/2023-04-20/visiting-disneyland-alone-single-rider-tips", "title": "Single rider: The ultimate guide to visiting Disneyland alone" }, { "resultType": "organic", "url": "https://www.history.com/this-day-in-history/disneyland-opens", "title": "Disneyland Opens" }, { "resultType": "organic", "url": "https://www.britannica.com/place/Disneyland", "title": "Disneyland | History, Map, & Facts" }, { "resultType": "organic", "url": "https://wikitravel.org/en/Disneyland", "title": "Disneyland" }, { "resultType": "organic", "url": "https://www.cnn.com/travel/article/disneyland-offers-cheaper-tickets/index.html", "title": "Disneyland increasing number of days it offers cheapest ..." }, { "resultType": "organic", "url": "https://www.sandiegouniontribune.com/lifestyle/travel/story/2023-02-01/disneyland-resort-is-taking-a-100-year-dive-into-its-history-for-yearlong-celebration-at-anaheim-theme-parks", "title": "Disneyland Resort is taking a 100-year dive into its history ..." }, { "resultType": "organic", "url": "https://deadline.com/2023/05/disneyland-splash-mountain-closes-today-racism-stereotypes-1235383033/", "title": "Disneyland's Splash Mountain Officially Closes For ..." }, { "resultType": "organic", "url": "https://slate.com/human-interest/2023/05/disney-trip-care-and-feeding.html", "title": "Disneyland trip and leaving kids out" }, { "resultType": "organic", "url": "https://www.kron4.com/news/national/woman-accused-of-trying-to-avoid-arrest-by-hiding-on-disneyland-ride/", "title": "Woman accused of trying to avoid arrest by hiding on ..." }, { "resultType": "organic", "url": "https://www.marcieinmommyland.com/how-many-days-see-disneyland/", "title": "How Many Days to See Disneyland: 3 Must-Read Tips (2023)" }, { "resultType": "organic", "url": "https://www.cntraveler.com/story/how-to-plan-a-trip-to-disneyland", "title": "The Ultimate Guide for Planning a Trip to Disneyland" }, { "resultType": "organic", "url": "http://soundsofdisneyland.com/", "title": "Sounds of the Disneyland Resort" } ], "date": "Jun 24, 2023" } ] } ``` --- ### Update Keywords in single project or group `PATCH /api/v2/projects/{project_id}/keywords` **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_id` | path | Yes | | **Request Body:** ```json { "data": { "ids": [ "267540882" // List keyword Ids that need to be changed ], "type": "keyword", "attributes": { "type": "se", // // Set the device type se=desktop, sem=mobile "project_id": 3697078, // Project id "category": "000-General tests", // Project name "url": "dell.com", // Tracked url "source": 1, //Leave this as 1 "start": 0, // Start date "notes": null, "tags_count": 0, "tags": [], "tag": null, "region": "google.ca", // Google TLD "language": "en-ca", // Language "in_featured": false, "has_featured": false, "has_featured_url": "", "included_in_sov": true, "ignore_featured": true, "exact": false, "isfav": false, "clicks": -1, "impressions": -1, "ctr": -1, "ms": 368000, "cpc": 1.3900000000000001, "competition": 1, "gpage": 0, "serp_features": { "reviews": 0, "shopping_results": 0, "ads": 0 }, "grank": 0, "brank": 0, "best": 0, "yrank": 0, "seocomp": 820000000, "in_local_pack": false, "rankingurl": "NOT FOUND", "grankhistory": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "trends": { "day": 0, "week": 0, "month": 0, "life": 0 }, "crawled_at": 1730334077, "updated_at": "2021-08-27T07:04:54+00:00", "is_paginated": 0, "currency_symbol": "$", "search_intents": { "commercial": 0.3080935, "informational": 0, "navigational": 0, "transactional": 0.6121436 }, "yahooRankHistory": [], "bingRankHistory": [], "tagsSplited": [], "grankTooltip": "Keyword update in progress", "fullUrl": "http://disney.com", "fullKw": "dog bed", "flag": { "image": "com", "tooltip": "tracking: google.com - language: en" }, "originalUrl": "disney.com" } } } ``` --- ### Bulk delete keywords from single project `DELETE /api/v2/projects/{project_id}/keywords` **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_id` | path | Yes | | **Request Body:** ```json Body { "data": { "type": "keyword", "ids": [ "{{keyword_id1}}", "{{keyword_id2}}", "{{keyword_id3}}" ] } } ``` --- ## Share of Voice ### Retrieve latest Top 10 results for Share of Voice `GET /api/v2/metrics/{project_name}/mindshare/latest` Get the top 10 domains for Shar of Voice. **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Response (200):** ```json { "data": [ { "title": "Tinker Bell", "url": "en.wikipedia.org", // Competitor "clicks": 2750049.638000001, // Estimated clicks in SERPS (Based on CTR) "percentage": 28.85809668022449, // Percentage of the SERP real estate for group of keywords "changes": { // changes "month": 4.182040388013718 } }, { "title": "Tinker Bell | Pixie Hollow | Disney Junior UK - YouTube", "url": "www.youtube.com", "clicks": 1730314.7160000002, "percentage": 18.1573411154345, "changes": { "month": 0.9847651518013425 } }, { "title": "What To Know Before You Go | Disneyland Resort", "url": "disneyland.disney.go.com", "clicks": 1145100, "percentage": 12.01629456134386, "changes": { "month": 6.058516867515394 } }, { "title": "Tinker Bell (Video 2008)", "url": "www.imdb.com", "clicks": 461440.10000000003, "percentage": 4.842197331251391, "changes": { "month": 0 } }, { "title": "Disney Princess | Official Site", "url": "princess.disney.com", "clicks": 259037.7, "percentage": 2.718254567891907, "changes": { "month": 2.718254567891907 } }, { "title": "Tinker Bell | Disney Wiki | Fandom", "url": "disney.fandom.com", "clicks": 136242.528, "percentage": 1.4296833012227217, "changes": { "month": 0.4283974915945753 } }, { "title": "Moana - Home", "url": "www.facebook.com", "clicks": 119479.692, "percentage": 1.2537797337967334, "changes": { "month": 0.8569742149690017 } }, { "title": "Tinker Bell", "url": "fairies.disney.com", "clicks": 115854.90000000001, "percentage": 1.215742384748089, "changes": { "month": 0 } }, { "title": "Pluto TV - Drop in. Watch Free.", "url": "pluto.tv", "clicks": 94685.40000000001, "percentage": 0.9935967662725247, "changes": { "month": 0.9935967662725247 } }, { "title": "List of Disney Princesses - Disney Princess Wiki - Fandom", "url": "disneyprincess.fandom.com", "clicks": 86951.6, "percentage": 0.9124408682037786, "changes": { "month": 0.9124408682037786 } } ] } ``` --- ### Retrieve Share of Voice data over time `GET /api/v2/projects/{project_id}/mindshare/from-cache` Get share of Voice data for a range of time. The options you can use are 7 days, 30 days, 90 days, 180 days and 365 days. Depending on what day range you select, you will be presented with data like this: 7 days = Data points every 1 day for last 7 days; 30 days = Data point every 7 days for last 30 days; 90 days = Data point every 14 days for last 90 days; 180 days = Data point every 30 days for last 180 days; 365 days = Data point every 60 days for last 365 days; **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_id` | path | Yes | | | `daysrange` | query | No | | **Response (401):** ```json [object Object] ``` --- ## Alerts ### Get all alerts for account `GET /api/v2/alerts` Retrieves all the alerts present for your Keyword.com account **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `last` | query | No | | | `page` | query | No | | | `per_page` | query | No | | | `sort_direction` | query | No | | | `sort_field` | query | No | | | `view_type` | query | No | | **Response (200):** ```json { "data": [ { "type": "alert", "id": "552700104", // Unique alert id "attributes": { "category": "Disney", // Project name "keyword_id": 187765907, // Unique keyword id "url": "disney.com/", // Ranked URL "kw": "Donald Duck", // Keyword "ms": 30, // Monthly search volume "region": "google.com", // Google region "language": "en", // Language "prevrank": 5, // Previous rank position "result": 1, // New rank position "time": "2023-04-15T09:20:55-04:00", // Date and time fo change "created_at": 1681564855, // Timestamp of alert "read": true // Indicates if alerts was read in UI } } ], "meta": { "pagination": { "total": 204, "count": 100, "per_page": 100, "current_page": 1, "total_pages": 3 } }, "links": { "self": "http://app.keyword.com/api/v2/alerts?q=%2Fapi%2Fv2%2Falerts&last=false&per_page=100&sort_direction=desc&sort_field=created_at&view_type=All%20alerts&api_token=9d8by579d8by579d8by5769d8by574&page=1", "first": "http://app.keyword.com/api/v2/alerts?q=%2Fapi%2Fv2%2Falerts&last=false&per_page=100&sort_direction=desc&sort_field=created_at&view_type=All%20alerts&api_token=9d8by579d8by579d8by5769d8by574&page=1", "next": "http://app.keyword.com/api/v2/alerts?q=%2Fapi%2Fv2%2Falerts&last=false&per_page=100&sort_direction=desc&sort_field=created_at&view_type=All%20alerts&api_token=9d8by579d8by579d8by5769d8by574&page=2", "last": "http://app.keyword.com/api/v2/alerts?q=%2Fapi%2Fv2%2Falerts&last=false&per_page=100&sort_direction=desc&sort_field=created_at&view_type=All%20alerts&api_token=9d8by579d8by579d8by5769d8by574&page=3" } } ``` --- ## Top Pages ### Get Top Pages for project or group `GET /api/v2/groups/{project_name}/keywords/ranking-urls` **Parameters:** | Name | In | Required | Description | |------|----|----------|-------------| | `project_name` | path | Yes | | **Response (200):** ```json { "data": [ { "current_ranking_url": "https://movies.disney.com/a-z", // Ranking url "total_keyword_count": 1, // Number of keywords ranking in url "average_current_rank": 81, //Average rank metric "average_previous_rank": 43, // Previous average rank "total_search_volume": 140, // Total monthly search volume "average_cost_per_click": 0 // Average cost per click }, { "current_ranking_url": "https://mickey.disney.com/pluto", "total_keyword_count": 3, "average_current_rank": 67, "average_previous_rank": 28.3333, "total_search_volume": 2000000, "average_cost_per_click": 0.175275 }, { "current_ranking_url": "https://frozen.disney.com/", "total_keyword_count": 1, "average_current_rank": 41, "average_previous_rank": 41, "total_search_volume": 320, "average_cost_per_click": 0 }, { "current_ranking_url": "https://news.disney.com/20-beautiful-love-quotes-from-disney-movies", "total_keyword_count": 1, "average_current_rank": 32, "average_previous_rank": 0, "total_search_volume": 390, "average_cost_per_click": 0.20295 }, { "current_ranking_url": "https://origin.prod.mdxpepui.mdx.las1.wdpro.disney.com/entertainment/magic-kingdom/character-meet-ariel-grotto-fantasyland/", "total_keyword_count": 1, "average_current_rank": 22, "average_previous_rank": 21, "total_search_volume": 0, "average_cost_per_click": 0 }, { "current_ranking_url": "https://news.disney.com/at-home-with-olaf-disney-magic-moments", "total_keyword_count": 1, "average_current_rank": 18, "average_previous_rank": 0, "total_search_volume": 368000, "average_cost_per_click": 0.1476 }, { "current_ranking_url": "https://princess.disney.com/pocahontas", "total_keyword_count": 2, "average_current_rank": 8.5, "average_previous_rank": 34.5, "total_search_volume": 2440000, "average_cost_per_click": 0.101475 }, { "current_ranking_url": "https://movies.disney.com/the-aristocats", "total_keyword_count": 1, "average_current_rank": 8, "average_previous_rank": 7, "total_search_volume": 201000, "average_cost_per_click": 0.1845 }, { "current_ranking_url": "https://www.disney.com/", "total_keyword_count": 2, "average_current_rank": 8, "average_previous_rank": 6.5, "total_search_volume": 1940000, "average_cost_per_click": 0.9225 }, { "current_ranking_url": "https://movies.disney.com/sleeping-beauty", "total_keyword_count": 1, "average_current_rank": 5, "average_previous_rank": 4, "total_search_volume": 450000, "average_cost_per_click": 0.20295 } ], "links": { "first": "http://app.keyword.com/api/v2/groups/Disney/keywords/ranking-urls?page=1", "last": "http://app.keyword.com/api/v2/groups/Disney/keywords/ranking-urls?page=2", "prev": null, "next": "http://app.keyword.com/api/v2/groups/Disney/keywords/ranking-urls?page=2" }, "meta": { "current_page": 1, "from": 1, "last_page": 2, "path": "http://app.keyword.com/api/v2/groups/Disney/keywords/ranking-urls", "per_page": 10, "to": 10, "total": 18 } } ``` --- ## Account ### https://app.keyword.com/api/v2/users/self `GET /api/v2/users/self&include_subscriptions` **Response (200):** ```json { "data": { "type": "user", "id": "email@user.com", // User "attributes": { "user_is_restricted": false, // System use only "onboarding": true, // Shows that user completed the onboarding "verified": 1, // User's email has been verified "user_id": 252725, // User ID "intercom_hash": "xxxxx", // System use only "intercom_user_id": "xxxxx", // Sytem use only "name": "George", // User's name "addon_master_email": "", // If this user is an Add-on user, this indicates the master user email address "addon_master_disabled": false, // Indicates if the master ser is active or disabled "addon_restricted": false, // System use only "api_token": "xxxxx", // User's api key "showall": "xxxx", // System use only "sharedcountapi": "", // Not used "access_level": "master", // User's access level "gsc_connected": true, // Indicates if Google Search Console Account is connected "used": 6915, // Indicates how many keywords have been used from package "package": 10000, // Indicates the number of keywords available in package "refreshes": { // Indicates status of your On Demand Refresh free limit "used": 0, "remaining": 10000, "limit": 10000 }, "daily_added": { // Indicates status of your Daily keyword add limit "used": 0, "remaining": 10000, "limit": 10000 }, "contactnum": "155526222", // User's contact number "contactnum_code": "US", // Contact number dialing code "country": "US", // Country "countrystate": "Alabama", // State "last_login_at": "2024-10-23T08:28:17+00:00", // Last tiem user logged into the app "created_at": "2021-04-12T11:48:53+00:00", // Date user was crated "created_at_ts": 1618228133, // Timestamp when user was created "disabled": false, // Not used "is_not_stripe_user": false, // System use only "is_free_plan": false, // System use only "currency_code": "USD", // Project reporting currency "serp_and_ranking_history_limit_date": "1924-10-23", // History limit "trial_is_used": true, // If trial was used "package_info": { "title": "Enterprise Daily" } } } } ``` ---