Skip to main content
GET
/
v1
/
data
/
statistic
cURL
curl --request GET \
  --url https://api.statista.ai/v1/data/statistic \
  --header 'x-api-key: <api-key>'
{
  "teaser_image_urls": [
    {
      "width": 123,
      "src": "<string>"
    }
  ],
  "identifier": 123,
  "title": "<string>",
  "description": "<string>",
  "link": "<string>",
  "date": "2023-11-07T05:31:56Z",
  "platform": "de",
  "subject": "<string>",
  "is_premium": true,
  "industries": [
    {
      "id": 123,
      "name": "<string>"
    }
  ],
  "geolocations": [
    {
      "id": 123,
      "name": "<string>",
      "code": "<string>"
    }
  ],
  "sources": [
    {
      "title": "<string>",
      "subtitle": "<string>"
    }
  ],
  "chargers": [
    {
      "title": "<string>",
      "subtitle": "<string>"
    }
  ],
  "publishers": [
    {
      "title": "<string>",
      "subtitle": "<string>"
    }
  ],
  "chart": {
    "unit": "%",
    "graphType": "annotations",
    "data": {
      "categories": [
        "<string>"
      ],
      "series": [
        "<string>"
      ]
    }
  }
}
Retrieve chart data for a specific Statistic. Always use format=advanced if ingesting into LLMs.

Authorizations

x-api-key
string
header
required

Query Parameters

id
integer
required

The unique identifier of a content information to be retrieved.

format
enum<string>
default:basic

The format of the data to be retrieved. Set 'format=advanced' to get the data in an advanced format.

Available options:
basic,
advanced

Response

The request has succeeded.

teaser_image_urls
object[]
required

A list of preview images for this content.

identifier
integer
required

A unique number for this content. It helps find or refer to this data.

title
string
required

The name of the content. It tells what the data is about.

The website address (URL) where you can see the full content on the Statista platform.

date
string<date-time>
required

The date when the data was published. Format: YYYY-MM-DDTHH:mm:ssZ

platform
enum<string>
required

The language of the page or platform.

Available options:
de,
en,
fr,
es
subject
string
required

A short summary of what the data shows.

is_premium
boolean
required

A true/false value. Indicates on paid and free content.

chart
object
required
description
string

Optional: A short text that explains the most important facts in the data. Available for Advanced API key

industries
object[]

Optional: A list of industries related to the data.

geolocations
object[]

Optional: A list of regions related to the data.

sources
object[]
chargers
object[]
publishers
object[]
I