Skip to main content
POST
/
api
/
ecb
/
datasets
/
series
/
search
/ecb/datasets/series/search
curl --request POST \
  --url https://api.anysite.io/api/ecb/datasets/series/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dataset": "<string>",
  "count": 2,
  "timeout": 300,
  "key": "D..EUR.SP00.A"
}
'
[
  {
    "key": "<string>",
    "dimensions": [
      {
        "id": "<string>",
        "code": "<string>",
        "@type": "@ecb_dimension_value",
        "label": "<string>"
      }
    ],
    "@type": "@ecb_series_key",
    "title": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dataset
string
required

Dataset code

Examples:

"EXR"

"BSI"

"ICP"

"FM"

count
integer
required

Number of series keys to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
key
string | null

Dot-separated dimension key with optional wildcards; empty segments match all values

Example:

"D..EUR.SP00.A"

Response

Successful Response

key
string
required
dimensions
EcbDimensionValue · object[]
required
@type
string
default:@ecb_series_key
title
string | null