The Bing Application Programming Interface (API), enables developers to programmatically submit queries to and retrieve results from the Microsoft Bing Search Engine.
Questions tagged [bing-api]
739 questions
2
votes
0 answers
Search similar images using Bing API v7.0
I'm already can search images by text-requser, using this python-script:
ap = argparse.ArgumentParser()
ap.add_argument("-q", "--query", required=True, help="search query to search Bing Image API for")
ap.add_argument("-o", "--output",…

garbart
- 465
- 4
- 19
2
votes
1 answer
missing a final step in using the BingMapsRESTToolkit to get a distance
I need to calculate the distance between 2 places, using the BinMapsRESTToolkit that can be found here.
However, the documentation only lists properties and methods, but there is no example on how to use this.
What I got so far is this
async…

GuidoG
- 11,359
- 6
- 44
- 79
2
votes
1 answer
Bing Image Search SDK for Python: Getting 'Permission Denied'
I'm trying to use the example program provided by Microsoft here to test out the Bing Image Search Service associated with their Cognitive Service offering on Azure. I type the code in character by character (of course, using my own API key) and I…

RiverRook
- 144
- 10
2
votes
1 answer
Bing Visual Search API (v7) returns no response for image
I tried to setup a bing visual search API REST-Call from my java program. It works partly, i get an answer but not the answer i want. The goal is to do a POST REST-Call with an image and then get the information about the image as JSON.
I setup…

Tilo Michel
- 31
- 4
2
votes
1 answer
Trouble finding a suitable Search API
I need web search and site search results in feed format for a project and it's harder than ever now. Google has killed it's Web Search API and now they charge $5 per 1000 queries with their new API. If it were per million I could afford it.
Bing…

Chad
- 2,365
- 6
- 26
- 37
2
votes
1 answer
Bing API: specify both medium and large images
I am forming a JSON request to pull images from the Bing API for a given query. I want to get both medium and large images (exclude small). I tried using:
Image.Filters=Style:Photo+Size:Medium
But this seems to be "and"ing them, as I get no…

initlaunch
- 467
- 5
- 15
2
votes
1 answer
Bahrain's transit route in bings map
I want to display the transit route from point A to B on the Bahrain map. I'm not sure what the issue is because when I entered the route mode as "driving/walk" a path is displayed but when its "transit" nothing shows up.
Note: I have removed my…

Alina Mohammad
- 29
- 1
2
votes
0 answers
Bing map API Distance between 2 points
I am trying to get travel distance by car using bing maps api between 2 addresses.
So far I have got the link which returns a JSON file with data but unsure how to get;set; the results to a basic class variable.
Link : var url =…

DarrenB
- 75
- 6
2
votes
2 answers
401 Unauthorized when requesting Bing Text to Speech API
I am using this example from Azure-Samples github.
https://github.com/Azure-Samples/Cognitive-Speech-TTS/blob/master/Samples-Http/Python/TTSSample.py
I replaced the api key with my own, but I am getting 401 errors.
Here is the response code and…

ellaRT
- 1,346
- 2
- 16
- 39
2
votes
1 answer
Bing Spell Check API works only in English
Trying Bing Spell Check API, but it doesn't seem to work correctly with languages other than English. Available languages for Spell Check
I've tried to check French text, but the results will actually suggest mistakes to a perfectly fine text and…

SuperFrog
- 7,631
- 9
- 51
- 81
2
votes
2 answers
Bing-Spellcheck Api doesn't work for languages other than English (en-US)
The error
When I call the Api with mkt or language set to da, the response list is empty no matter what I do.
What have I done until now
Nuget package and tried with English (worked)
I've added the service to my Azure subscription and tried the c#…

Ashkan S
- 10,464
- 6
- 51
- 80
2
votes
1 answer
How can I pass parameters with callback functions to search APIs like Yahoo BOSS and BING?
I am using Yahoo BOSS and Bing APIs to provide search functionality to my site. Specificaly, I use their JSON response formats where I would pass a callback function to the search provider that would later be called back with the search results. My…

Faith Wins
- 411
- 1
- 5
- 10
2
votes
1 answer
Bing ads - Upload offline conversion
I am trying to upload my offline conversions to bing ads through API. I am using below code. And for now I am using sandbox account to test it.
val authorizationData = AuthorizationData().apply {
developerToken = "BBD37VB98"
authentication…

SBM
- 87
- 10
2
votes
1 answer
Processing a JSON response in python for the Bing API
I am writing the back-end of an answers aggregator site in python using the Bing API (python bindings here:http://uswaretech.com/blog/2009/06/bing-python-api/). The following is my code:
#!/usr/bin/python
from bingapi import bingapi
import re
import…

kjakeb
- 6,810
- 5
- 20
- 34
2
votes
1 answer
bing news search API
How does the "freshness" parameter of the Bing news search API work?
I am writng a program to call the Bing news search API.
I set the "freshness" parameter to be "Month". Yet, Bing returned content that can be as old as 6 months ago. How did I find…

MIkey
- 165
- 3
- 13