GET/market/ecb-rateTest keys only for now

ECB rate

European Central Bank rate.

View as Markdown
All endpoints

Cost

5 DS Credits

per request

Scope

market:read

Same data as

/api/ecb-rate

the DepositScout website

Test keys only for now. This endpoint returns sample data to test keys; a live key gets 403 endpoint_restricted and is not charged. When it opens it will cost 5 DS Credits per request. Early access: [email protected].

Request

GET https://depositscout.com/api/developer/v1/market/ecb-rate

No parameters.

Example

shell
curl "https://depositscout.com/api/developer/v1/market/ecb-rate" \
  -H "Authorization: Bearer $DS_API_KEY"

Try it

Runs against this site. A ds_test_ key is free and returns sample data in the real shape; a live key returns real data and spends credits. The key is kept in this tab only.

No key yet? Create an account or sign in for a free test key.
GET /api/developer/v1/market/ecb-rate
as curl
curl "/api/developer/v1/market/ecb-rate" \
  -H "Authorization: Bearer ds_test_…"

Response

data is a single object. Every 2xx also sets X-DS-Request-Id, X-DS-Credits-Charged, X-DS-Credits-Balance, the X-RateLimit-* trio and an ETag.

response.json
{
  "data": {
    "…": "the item"
  },
  "meta": {
    "requestId": "req_7f3a9c2d1b4e5a6f7c8d",
    "generatedAt": "2026-09-21T09:00:00.000Z",
    "creditsCharged": 5,
    "creditsBalance": 199,
    "attribution": "Rates powered by DepositScout — depositscout.com"
  }
}

Errors follow the shared error contract. Back to all endpoints.