Page summary

https://www.wikidata.org/wiki/Q64

Tested 2025-04-05 19:12:53 using Firefox 136.0 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU
| Summary | | Download Video | Download HAR | Download Console Logs | 

Summary

MetricValue
Page metrics
Performance Score78
Total Page Transfer Size2.0 MB
Requests72
Timing metrics
TTFB [median]514 ms
First Paint [median]960 ms
Fully Loaded [median]4.527 s
Google Web Vitals
TTFB [median]514 ms
First Contentful Paint (FCP) [median]948 ms
Largest Contentful Paint (LCP) [median]960 ms
Interaction To Next Paint (INP) [median]131 ms
Visual Metrics
First Visual Change [median]1.000 s
Speed Index [median]1.193 s
Visual Complete 85% [median]1.000 s
Visual Complete 99% [median]3.500 s
Last Visual Change [median]6.200 s
Screenshot of run 2

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange1.000 s1.000 s1.033 s1.133 s
LastVisualChange5.733 s6.200 s6.093 s6.300 s
SpeedIndex1.187 s1.193 s1.226 s1.329 s
LargestImage1.033 s1.100 s1.100 s1.200 s
Heading1.000 s1.000 s1.033 s1.133 s
LargestContentfulPaint1.000 s1.000 s1.033 s1.133 s
LastMeaningfulPaint1.033 s1.100 s1.100 s1.200 s
VisualReadiness4.733 s5.167 s5.060 s5.200 s
VisualComplete851.000 s1.000 s1.033 s1.133 s
VisualComplete953.200 s3.500 s3.493 s3.700 s
VisualComplete993.200 s3.500 s3.506 s3.700 s
Google Web Vitals
Time To First Byte (TTFB)495 ms514 ms531 ms623 ms
Largest Contentful Paint (LCP)936 ms960 ms980 ms1.072 s
First Contentful Paint (FCP)931 ms948 ms972 ms1.067 s
More metrics
firstPaint935 ms960 ms980 ms1.071 s
loadEventEnd2.688 s3.482 s3.373 s3.667 s
User Timing
mwStartup965 ms1.063 s1.070 s1.174 s
wbInitStart2.565 s2.631 s2.640 s2.752 s
wbInitEnd3.247 s3.557 s3.549 s3.750 s
| Waterfall | | Download HAR | 

Waterfall

Run 2 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
1 sFirst Contentful Paint 931 msLCP <DIV> 947 msDOM Content Loaded Time 959 msmwStartup 965 msFirst Visual Change 1.000 sVisual Complete 85% 1.000 sHeading 1.000 s
1.1 sLargest Image 1.100 s
1.2 s
1.3 s
1.7 s
1.9 s
2 s
2.1 s
2.2 s
2.3 s
2.4 s
2.5 s
2.6 swbInitStart 2.565 s
2.7 sPage Load Time 2.688 s
2.8 s
3.2 sVisual Complete 95% 3.200 sVisual Complete 99% 3.200 s
3.3 swbInitEnd 3.247 s
4.1 sFully Loaded 4.080 s
5.7 s
5.8 sLast Visual Change 5.733 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.

I am the coach

Coach score

Performance advice (78)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The style https://www.wikidata.org/w/load.php?lang=en&modules=ext.kartographer.style%7Cext.uls.pt%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikidata-org.badges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cjquery.wikibase.toolbar.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.alltargets%2Cdesktop&only=styles&skin=vector-2022 is larger than the magic number TCP window size 14.5 kB. Make the file smaller and the page will render faster. The page has 1 render blocking CSS request and 0 blocking JavaScript request inside of head.95
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path.
Offenders:
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Avoid doing redirects (assetsRedirects)The page has 2 redirects. 1 of the redirects are from the base domain, please fix them! 1 request are from other domains, it could be 3rd-party assets doing unnecessary redirects. :(80
    Description: A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.
    Offenders:
  • https://www.wikidata.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=0
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 21 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 592.5 kB the next access.0
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Cityscape_Berlin.jpg/2...yscape_Berlin.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Geschichte_der_Hauptst...A_4.0%29.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Google_Timelapse-_Berl..._Germany.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Berlin_by_Senitnel-2.j...by_Senitnel-2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Locator_map_Berlin_in_...n_Germany.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Berlin_in_Germany_and_...ermany_and_EU.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Berlin%2C_administrati...colors%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Karte_Berlin_Landnutzu...n_Landnutzung.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Flag_of_Berlin.svg/220...of_Berlin.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/DEU_Berlin_COA.svg/220...erlin_COA.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/150524_Konzerthaus_Ber...ht%29_-_clone.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Collage_Berlin2.jpg/22...llage_Berlin2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wv_Berlin_banner3.jpg/...erlin_banner3.jpg
  • https://www.wikidata.org/wiki/Special:EntityData/Q64.json?revision=2328802221
  • https://www.wikidata.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=0
  • https://upload.wikimedia.org/wikipedia/commons/1/1b/Semi-protection-shackle.svg
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://auth.wikimedia.org/loginwiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://maps.wikimedia.org/v4/marker/pin-l-marker+0050d0.png
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • Long cache headers is good (cacheHeadersLong)The page has 27 requests that have a shorter cache time than 30 days (but still a cache time).73
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://www.wikidata.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://maps.wikimedia.org/img/osm-intl,13,52.516666666667,13.383333333333,310x1...33333,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.43766,13.76104,310x180.png...76104,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.6754,13.47944,310x180.png...47944,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.33859,13.64817,310x180.png...64817,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.41961,13.08825,310x180.png...08825,310x180.png
  • https://maps.wikimedia.org/osm-intl/13/4400/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4400/2687.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4399/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4401/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4399/2687.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4401/2687.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4408/2689.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4409/2689.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4408/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4409/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4402/2680.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4403/2680.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4402/2681.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4403/2681.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4406/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4405/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4407/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4393/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4394/2690.png?lang=en
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 786.7 kB. This is quite large. 50
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://www.wikidata.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022 21.4 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 5.5 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 17.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 633.1 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 87.2 KB0 b
    https://auth.wikimedia.org/loginwiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.3 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 2.4 KB0 b
    Make each CSS response small (optimalCssSize)https://www.wikidata.org/w/load.php?lang=en&modules=ext.kartographer.style%7Cext.uls.pt%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikidata-org.badges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cjquery.wikibase.toolbar.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.alltargets%2Cdesktop&only=styles&skin=vector-2022 size is 31.5 kB (31526) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.90
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 30.8 KB0 b
    Total page size shouldn't be too big (pageSize)The page total transfer size is 2.1 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://www.wikidata.org/wiki/Q64 125.4 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 30.8 KB0 b
    https://www.wikidata.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022 21.4 KB0 b
    https://www.wikidata.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022 2.4 KB0 b
    https://www.wikidata.org/static/images/icons/wikidatawiki.svg 1.2 KB0 b
    https://www.wikidata.org/static/images/mobile/copyright/wikidatawiki-wordmark.svg 1.4 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Cityscape_Berlin.jpg/2...yscape_Berlin.jpg 9.1 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Geschichte_der_Hauptst...A_4.0%29.webm.jpg 9.5 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Google_Timelapse-_Berl..._Germany.webm.jpg 13.1 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Berlin_by_Senitnel-2.j...by_Senitnel-2.jpg 27.6 KB0 b
    https://maps.wikimedia.org/img/osm-intl,13,52.516666666667,13.383333333333,310x1...33333,310x180.png 27.3 KB0 b
    https://maps.wikimedia.org/img/osm-intl,13,52.43766,13.76104,310x180.png...76104,310x180.png 13.1 KB0 b
    https://maps.wikimedia.org/img/osm-intl,13,52.6754,13.47944,310x180.png...47944,310x180.png 13.7 KB0 b
    https://maps.wikimedia.org/img/osm-intl,13,52.33859,13.64817,310x180.png...64817,310x180.png 18.4 KB0 b
    https://maps.wikimedia.org/img/osm-intl,13,52.41961,13.08825,310x180.png...08825,310x180.png 16.5 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Locator_map_Berlin_in_...n_Germany.svg.png 42.2 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Berlin_in_Germany_and_...ermany_and_EU.png 25.1 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Berlin%2C_administrati...colors%29.svg.png 47.7 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Karte_Berlin_Landnutzu...n_Landnutzung.png 96.4 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Flag_of_Berlin.svg/220...of_Berlin.svg.png 4.2 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/DEU_Berlin_COA.svg/220...erlin_COA.svg.png 31.1 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/150524_Konzerthaus_Ber...ht%29_-_clone.jpg 14.1 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Collage_Berlin2.jpg/22...llage_Berlin2.jpg 27.5 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wv_Berlin_banner3.jpg/...erlin_banner3.jpg 6.7 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.4 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 5.5 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 17.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 633.1 KB0 b
    https://www.wikidata.org/wiki/Special:EntityData/Q64.json?revision=2328802221 78.8 KB0 b
    https://www.wikidata.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=0 1.0 KB0 b
    https://upload.wikimedia.org/wikipedia/commons/1/1b/Semi-protection-shackle.svg 1.5 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.3 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.3 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.3 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 1.2 KB0 b
    https://www.wikidata.org/w/extensions/Kartographer/lib/external/mapbox/images/icons.svg?1f78f 3.1 KB0 b
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.3 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 87.2 KB0 b
    https://auth.wikimedia.org/loginwiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.3 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4400/2686.png?lang=en 31.3 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4400/2687.png?lang=en 30.2 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4399/2686.png?lang=en 29.4 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4401/2686.png?lang=en 33.0 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4399/2687.png?lang=en 29.4 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4401/2687.png?lang=en 31.9 KB0 b
    https://maps.wikimedia.org/v4/marker/pin-l-marker+0050d0.png 2.0 KB0 b
    https://www.wikidata.org/w/skins/Vector/resources/skins.vector.styles/images/lin...r-progressive.svg 1.2 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4408/2689.png?lang=en 18.3 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4409/2689.png?lang=en 13.0 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4408/2690.png?lang=en 21.4 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4409/2690.png?lang=en 16.3 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4402/2680.png?lang=en 11.0 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4403/2680.png?lang=en 11.2 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4402/2681.png?lang=en 16.5 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4403/2681.png?lang=en 23.6 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4406/2693.png?lang=en 25.2 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4405/2693.png?lang=en 19.0 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4407/2693.png?lang=en 6.0 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4393/2690.png?lang=en 21.8 KB0 b
    https://maps.wikimedia.org/osm-intl/13/4394/2690.png?lang=en 17.1 KB0 b
    https://www.wikidata.org/w/api.php...ata.org/w/api.php 100.7 KB0 b
    https://www.wikidata.org/w/load.php...ta.org/w/load.php 2.4 KB0 b
    https://www.wikidata.org/static/apple-touch/wikidata.png 1.5 KB0 b
    https://www.wikidata.org/static/favicon/wikidata.ico 1.8 KB0 b
    https://www.wikidata.org/w/api.php...ata.org/w/api.php 37.7 KB0 b
    Don't use private headers on static content (privateAssets)The page has 4 requests with private headers. The main page has a private header. It could be right in some cases where the user can be logged in and served specific content. But if your asset is static it should never be private. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.70
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://www.wikidata.org/wiki/Q64
  • https://www.wikidata.org/wiki/Special:EntityData/Q64.json?revision=2328802221
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • Best practice advice (75)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)Layout Shift is not supported in this browser0
    Description: Cumulative Layout Shift measures the sum total of all individual layout shift scores for unexpected layout shift that occur. The metric is measuring visual stability by quantify how often users experience unexpected layout shifts. It is one of Google Web Vitals.
    Do not send too long headers (longHeaders)https://www.wikidata.org/wiki/Q64 has a header link that is 719 characters long. https://www.wikidata...ta.org/w/load.php has a header sourcemap that is 2990 characters long. 98
    Description: Do not send response headers that are too long.
    Offenders:
  • https://www.wikidata.org/wiki/Q64
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • Avoid too many third party requests (thirdParty)The page do more requests to third party domains (41 requests and 875.5 kB) then first party (31 requests and 1.2 MB). The regex .*wikidata.* was used to calculate first/third party requests.50
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 24 responses that sets both a max-age and expires header. There are 72 responses that sets a server header. 4
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://www.wikidata.org/wiki/Q64
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://www.wikidata.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://www.wikidata.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://www.wikidata.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://www.wikidata.org/static/images/icons/wikidatawiki.svg
  • https://www.wikidata.org/static/images/icons/wikidatawiki.svg
  • https://www.wikidata.org/static/images/mobile/copyright/wikidatawiki-wordmark.svg
  • https://www.wikidata.org/static/images/mobile/copyright/wikidatawiki-wordmark.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Cityscape_Berlin.jpg/2...yscape_Berlin.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Geschichte_der_Hauptst...A_4.0%29.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Google_Timelapse-_Berl..._Germany.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Berlin_by_Senitnel-2.j...by_Senitnel-2.jpg
  • https://maps.wikimedia.org/img/osm-intl,13,52.516666666667,13.383333333333,310x1...33333,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.43766,13.76104,310x180.png...76104,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.6754,13.47944,310x180.png...47944,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.33859,13.64817,310x180.png...64817,310x180.png
  • https://maps.wikimedia.org/img/osm-intl,13,52.41961,13.08825,310x180.png...08825,310x180.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Locator_map_Berlin_in_...n_Germany.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Berlin_in_Germany_and_...ermany_and_EU.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Berlin%2C_administrati...colors%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Karte_Berlin_Landnutzu...n_Landnutzung.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Flag_of_Berlin.svg/220...of_Berlin.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/DEU_Berlin_COA.svg/220...erlin_COA.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/150524_Konzerthaus_Ber...ht%29_-_clone.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Collage_Berlin2.jpg/22...llage_Berlin2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wv_Berlin_banner3.jpg/...erlin_banner3.jpg
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/wiki/Special:EntityData/Q64.json?revision=2328802221
  • https://www.wikidata.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=0
  • https://upload.wikimedia.org/wikipedia/commons/1/1b/Semi-protection-shackle.svg
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/extensions/Kartographer/lib/external/mapbox/images/icons.svg?1f78f
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://auth.wikimedia.org/loginwiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://maps.wikimedia.org/osm-intl/13/4400/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4400/2687.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4399/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4401/2686.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4399/2687.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4401/2687.png?lang=en
  • https://maps.wikimedia.org/v4/marker/pin-l-marker+0050d0.png
  • https://www.wikidata.org/w/skins/Vector/resources/skins.vector.styles/images/lin...r-progressive.svg
  • https://maps.wikimedia.org/osm-intl/13/4408/2689.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4409/2689.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4408/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4409/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4402/2680.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4403/2680.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4402/2681.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4403/2681.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4406/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4405/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4407/2693.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4393/2690.png?lang=en
  • https://maps.wikimedia.org/osm-intl/13/4394/2690.png?lang=en
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/w/load.php...ta.org/w/load.php
  • https://www.wikidata.org/static/apple-touch/wikidata.png
  • https://www.wikidata.org/static/apple-touch/wikidata.png
  • https://www.wikidata.org/static/favicon/wikidata.ico
  • https://www.wikidata.org/static/favicon/wikidata.ico
  • https://www.wikidata.org/w/api.php...ata.org/w/api.php
  • Privacy advice (82)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://www.wikidata.org/wiki/Q64
  • Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
    Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
    Offenders:
  • https://www.wikidata.org/wiki/Q64
  • Avoid third party cookies that is used to track the user. (thirdPartyCookies)The page sets 1 third party cookie.0
    Description: Third party cookies are used to track the user. They are automatically blocked in Safari and Firefox.
    Offenders:
  • .wikimedia.org NetworkProbeLimit=0.001
  • Page info

    Page info
    TitleBerlin - Wikidata
    GeneratorMediaWiki 1.44.0-wmf.23
    Width1920
    Height95535
    DOM elements31300
    Avg DOM depth21
    Max DOM depth31
    Iframes0
    Script tags4
    Local storage1.6 MB
    Session storage0 b
    Network Information APIunknown
    Resource Hints
    dns-prefetch
    https://meta.wikimedia.org/
    https://www.wikidata.org/wiki/auth.wikimedia.org
    preconnect
    https://upload.wikimedia.org/

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    MediaWiki 100  Wikis
    PHP 100  Programming languages
    HSTS 100  Security
    HTTP/2 100  Miscellaneous
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Interaction To Next Paint | Visual Elements | Server timings | 

    Data from run 2

    Visual Metrics

    Browser Metrics

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeDIV
    Element/tag<div class="wikibase-entitytermsview-heading-description "></div>
    Render time 947 ms
    Element render delay451 ms
    TTFB496 ms
    Resource delay0 ms
    Resource load duration0 ms
    Load time0 ms
    Size (width*height)8344
    DOM path
    div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div#wb-item-Q64 > div:eq(0) > div:eq(0) > div:eq(0) > div:eq(0)> div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div#wb-item-Q64 > div:eq(0) > div:eq(0) > div:eq(0) > div:eq(0)>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 128.02 ms.

    Event typemouseover
    Element typeHTML
    Element class nameclient-js vector-feature-language-in-header-disabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-disabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-disabled skin-theme-clientpref--excluded vector-sticky-header-enabled vector-toc-not-available vector-animations-ready ve-not-available
    Event targethtml.client-js.vector-feature-language-in-header-disabled.vector-feature-language-in-main-page-header-disabled.vector-feature-page-tools-pinned-disabled.vector-feature-toc-pinned-clientpref-1.vector-feature-main-menu-pinned-disabled.vector-feature-limited-width-clientpref-1.vector-feature-limited-width-content-disabled.vector-feature-custom-font-size-clientpref-1.vector-feature-appearance-pinned-clientpref-1.vector-feature-night-mode-disabled.skin-theme-clientpref--excluded.vector-sticky-header-enabled.vector-toc-not-available.vector-animations-ready.ve-not-available
    Load state when the event happenedloading

    Server timings

    namedurationdescription
    cache0hit-front
    host0cp3067

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (wikidatawiki.svg)1.100 s 254 8 50 50
    <img class="mw-logo-icon" src="/static/images/icons/wikidatawiki.svg" alt="" aria-hidden="true" height="50" width="50">
    Heading1.000 s 214 90 1200 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint1.000 s 214 184 1040 26
    <div class="wikibase-entitytermsview-heading-description "></div>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests72
    Total domains5
    Total transfer size2.0 MB
    Total content size0 b
    Responses missing compression0
    Number of cookies3
    Third party cookies1
    Requests per response code
    20070
    3022

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html2.1 KB125.4 KB0 b1
    css1.9 KB33.2 KB0 b2
    javascript10.4 KB768.2 KB0 b7
    image44.0 KB852.4 KB0 b39
    svg16.8 KB23.3 KB0 b17
    json2.8 KB217.3 KB0 b3
    favicon958 B1.8 KB0 b1
    Total79.0 KB2.0 MB0 b70

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.wikidata.org7.470 s1.1 MB0 b31
    upload.wikimedia.org15.174 s355.7 KB0 b14
    maps.wikimedia.org14.775 s496.7 KB0 b25
    login.wikimedia.org237 ms1.3 KB0 b1
    auth.wikimedia.org190 ms1.3 KB0 b1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds15 minutes1 year
    Last modified4 days11 years55 years

    CPU