Skip to main content
GET
/
v1
/
series
Search and list available series
curl --request GET \
  --url https://api.vintl.io/v1/series \
  --header 'X-API-Key: <api-key>'
{
  "object": "series_list",
  "results": [
    {
      "id": "GDPC1",
      "title": "Real Gross Domestic Product",
      "frequency": "D",
      "units": "lin",
      "observation_count": 316,
      "last_updated": "2023-11-07T05:31:56Z",
      "source": "FRED"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vintl.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key prefixed with mda_live_sk_

Query Parameters

q
string

Search query (matches series ID, case-insensitive)

limit
integer
default:100
Required range: 1 <= x <= 1000
cursor
string

Pagination cursor from previous response

Response

Paginated series list

object
string
Example:

"series_list"

results
object[]
Last modified on April 2, 2026