Skip to main content
POST
/
api
/
ted
/
notices
/ted/notices
curl --request POST \
  --url https://api.anysite.io/api/ted/notices \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "notice": "<string>",
  "timeout": 300
}
'
[
  {
    "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
notice
string
required

Notice publication number in NNNNNNNN-YYYY format

Examples:

"196826-2016"

"400900-2026"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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[]