Skip to main content
POST
/
api
/
tradingeconomics
/
indicators
/
search
/tradingeconomics/indicators/search
curl --request POST \
  --url https://api.anysite.io/api/tradingeconomics/indicators/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 5,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "@trading_economics_indicator_hit",
    "pretty_name": "<string>",
    "country": "<string>",
    "country_slug": "<string>",
    "indicator": "<string>",
    "category": "<string>",
    "group": "<string>",
    "type": "<string>",
    "currency": "<string>",
    "unit": "<string>",
    "frequency": "<string>",
    "symbol": "<string>",
    "source": "<string>",
    "importance": 123,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword (a country, an indicator, or both, e.g. 'germany gdp')

Minimum string length: 1
Examples:

"germany gdp"

"united states unemployment"

"japan interest rate"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 10
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@trading_economics_indicator_hit
pretty_name
string | null
country
string | null
country_slug
string | null
indicator
string | null
category
string | null
group
string | null
type
string | null
currency
string | null
unit
string | null
frequency
string | null
symbol
string | null
source
string | null
importance
integer | null
url
string | null