Skip to main content
GET
/
v1
/
series
/
{id}
/
revisions
Revision history for one observation
curl --request GET \
  --url https://api.vintl.io/v1/series/{id}/revisions \
  --header 'X-API-Key: <api-key>'
{
  "object": "revision_series",
  "request_id": "req_...",
  "status": "ok",
  "results": [
    {
      "date": "2023-07-01T00:00:00Z",
      "as_of_date": "2023-10-26T00:00:00Z",
      "value": "22491.567",
      "series_id": "GDPC1"
    },
    {
      "date": "2023-07-01T00:00:00Z",
      "as_of_date": "2023-11-29T00:00:00Z",
      "value": "22506.365",
      "series_id": "GDPC1"
    },
    {
      "date": "2023-07-01T00:00:00Z",
      "as_of_date": "2023-12-21T00:00:00Z",
      "value": "22490.692",
      "series_id": "GDPC1"
    },
    {
      "date": "2023-07-01T00:00:00Z",
      "as_of_date": "2024-09-26T00:00:00Z",
      "value": "22780.933",
      "series_id": "GDPC1"
    },
    {
      "date": "2023-07-01T00:00:00Z",
      "as_of_date": "2025-09-25T00:00:00Z",
      "value": "22840.989",
      "series_id": "GDPC1"
    }
  ],
  "results_count": 5,
  "has_more": false
}

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_

Path Parameters

id
string
required

Query Parameters

date
string<date>
required

The observation date to get revisions for

Response

All revisions ordered by as_of_date ascending

object
string
Example:

"revision_series"

results
object[]
Last modified on April 2, 2026