Tenders Search API - Query parameter value #551
-
Hi, I am trying to search for tenders which fulfill certain criteria via /api/v3.0/notices/search. However, I am not sure how to structure the value for the "query" argument. It seems that no matter what I pass as the value for "query" I receive the same response. This is currently the code I am using:
I receive a valid JSON with a 1000 results with this query. I have a query setup in Expert search and I used the same search query in my code but got the same results. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a question related to the search API of the TED website, so I suggest to contact their support helpdesk: https://ted.europa.eu/TED/misc/contact.do A few hints, based on my limited knowledge of this API: |
Beta Was this translation helpful? Give feedback.
This is a question related to the search API of the TED website, so I suggest to contact their support helpdesk: https://ted.europa.eu/TED/misc/contact.do
A few hints, based on my limited knowledge of this API:
The various parameters "query", "fields", etc. have to be passed either in the URL query string for a GET request, or in the request body for a POST request. It seems you are sending them in the headers, which is not supported.