Skip to main content
POST
/
api
/
ted
/
notices
/
search
/ted/notices/search
curl --request POST \
  --url https://api.anysite.io/api/ted/notices/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "cpv": "72000000",
  "published_from": "2024-01-01",
  "published_to": "2024-12-31"
}
'
[
  {
    "id": "<string>",
    "@type": "@ted_notice",
    "title": "<string>",
    "title_proc": "<string>",
    "title_lot": [],
    "published_at": "<string>",
    "countries": [],
    "buyer_name": "<string>",
    "buyer_country": "<string>",
    "notice_type": "<string>",
    "procedure_type": "<string>",
    "cpv_codes": [],
    "total_value": 123,
    "total_value_currency": "<string>",
    "deadline": "<string>",
    "winner_names": [],
    "winner_countries": [],
    "links": {
      "@type": "@ted_notice_links",
      "xml": "<string>",
      "pdf": "<string>",
      "html": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Full-text search across the notice content

Minimum string length: 1
Examples:

"cloud"

"road construction"

count
integer
required

Number of notices to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string> | null

Filter by buyer country (ISO 3166-1 alpha-3 code)

Available options:
AUT,
BEL,
BGR,
HRV,
CYP,
CZE,
DNK,
EST,
FIN,
FRA,
DEU,
GRC,
HUN,
IRL,
ITA,
LVA,
LTU,
LUX,
MLT,
NLD,
POL,
PRT,
ROU,
SVK,
SVN,
ESP,
SWE,
NOR,
ISL,
LIE,
CHE,
GBR
notice_type
enum<string> | null

Filter by notice type

Available options:
cn-standard,
cn-social,
cn-desg,
can-standard,
can-social,
can-desg,
can-modif,
pin-only,
pin-buyer,
pin-cfc-standard,
pin-cfc-social,
pin-rtl,
veat,
qu-sy,
brin,
subco,
corr
procedure_type
enum<string> | null

Filter by procurement procedure type

Available options:
open,
restricted,
neg-w-call,
neg-wo-call,
comp-dial,
innovation,
oth-single,
oth-mult
cpv
string | null

Filter by CPV product/service code

Example:

"72000000"

published_from
string | null

Earliest publication date, inclusive (YYYY-MM-DD)

Example:

"2024-01-01"

published_to
string | null

Latest publication date, inclusive (YYYY-MM-DD)

Example:

"2024-12-31"

Response

Successful Response

id
string
required
@type
string
default:@ted_notice
title
string | null
title_proc
string | null
title_lot
string[]
published_at
string | null
countries
string[]
buyer_name
string | null
buyer_country
string | null
notice_type
string | null
procedure_type
string | null
cpv_codes
string[]
total_value
number | null
total_value_currency
string | null
deadline
string | null
winner_names
string[]
winner_countries
string[]