Hi Rajyalakshmi, The TargetingIdeaService <https://developers.google.com/adwords/api/docs/guides/targeting-idea-service> and TrafficEstimatorService <https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service> can be used to retrieve targeting ideas and traffic estimates similar to Keyword Planner. The GetKeywordIdeas <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201806/optimization/GetKeywordIdeas.java> Java example shows how to retrieve keyword ideas and the EstimateKeywordTraffic <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201806/optimization/EstimateKeywordTraffic.java> Java example shows how to get keyword traffic estimates.
You can also use the sample request below in postman with URL as *https://adwords.google.com/api/adwords/o/v201806/TargetingIdeaService* to pull up the information based on queries: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header> <ns1:RequestHeader xmlns:ns1="https://adwords.google.com/api/adwords/o/v201806" soapenv:mustUnderstand="0"> <ns2:clientCustomerId xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201806">*****</ns2:clientCustomerId> <ns3:developerToken xmlns:ns3="https://adwords.google.com/api/adwords/cm/v201806">REDACTED</ns3:developerToken> <ns4:userAgent xmlns:ns4="https://adwords.google.com/api/adwords/cm/v201806">unknown (AwApi-Java, AdWords-Axis/3.15.0, Common-Java/3.15.0, Axis/1.4, Java/1.8.0_151-google-v7, jars)</ns4:userAgent> <ns5:validateOnly xmlns:ns5="https://adwords.google.com/api/adwords/cm/v201806">false</ns5:validateOnly> <ns6:partialFailure xmlns:ns6="https://adwords.google.com/api/adwords/cm/v201806">false</ns6:partialFailure> </ns1:RequestHeader> </soapenv:Header> <soapenv:Body> <get xmlns="https://adwords.google.com/api/adwords/o/v201806"> <selector> <searchParameters xmlns:ns7="https://adwords.google.com/api/adwords/o/v201806" xsi:type="ns7:RelatedToQuerySearchParameter"> <ns7:queries>hotels in roma</ns7:queries> </searchParameters> <searchParameters xmlns:ns8="https://adwords.google.com/api/adwords/o/v201806" xsi:type="ns8:NetworkSearchParameter"> <ns8:networkSetting> <ns9:targetGoogleSearch xmlns:ns9="https://adwords.google.com/api/adwords/cm/v201806">true</ns9:targetGoogleSearch> <ns10:targetSearchNetwork xmlns:ns10="https://adwords.google.com/api/adwords/cm/v201806">false</ns10:targetSearchNetwork> <ns11:targetContentNetwork xmlns:ns11="https://adwords.google.com/api/adwords/cm/v201806">false</ns11:targetContentNetwork> <ns12:targetPartnerSearchNetwork xmlns:ns12="https://adwords.google.com/api/adwords/cm/v201806">false</ns12:targetPartnerSearchNetwork> </ns8:networkSetting> </searchParameters> <ideaType>KEYWORD</ideaType> <requestType>STATS</requestType> <requestedAttributeTypes>KEYWORD_TEXT</requestedAttributeTypes> <requestedAttributeTypes>SEARCH_VOLUME</requestedAttributeTypes> <requestedAttributeTypes>AVERAGE_CPC</requestedAttributeTypes> <requestedAttributeTypes>COMPETITION</requestedAttributeTypes> <requestedAttributeTypes>CATEGORY_PRODUCTS_AND_SERVICES</requestedAttributeTypes> <paging> <ns13:startIndex xmlns:ns13="https://adwords.google.com/api/adwords/cm/v201806">0</ns13:startIndex> <ns14:numberResults xmlns:ns14="https://adwords.google.com/api/adwords/cm/v201806">10</ns14:numberResults> </paging> </selector> </get> </soapenv:Body> </soapenv:Envelope> Please refer this API call structure guide <https://developers.google.com/adwords/api/docs/guides/call-structure#api_call_example> to make direct calls without the client libraries. Please let me know if you have any further questions. Regards, Dhanya, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/0ac0ae3e-7607-496e-a02e-9f6569c2660b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
