All Analyzed Sites - 26.6M
- Phonometrica — Phonometrica 0.7.6 do***entation
phonometrica-ling.org
- 117 days ago
- base.report | the future of stock scanning
base.report
Stock screener and research platform for swing traders.
- 117 days ago
- Site not found · GitHub Pages
ilaris-kit.github.io
- 117 days ago
- AffCom Lab
affcom.ku.edu
- 117 days ago
- davidepatti homepage
davidepatti.it
davide patti (ph.d)
assistant professor at dieei, university of catania
dipartimento di ingegneria elettrica elettronica ed informatica (dieei), viale andrea doria 6, 95125 catania, italy , phone: +39 095 738 2385
usually i'm here: https://goo.gl/maps/38tzk2zd2362
contacts:
- 117 days ago
- 509 Bandwidth Limit Exceeded
veles.rs
- 117 days ago
- contribute.freecodecamp.org
Help us make freeCodeCamp better for everyone.
- 117 days ago
- Turn Your IaC into a Lightning-Fast Platform | Terramate
terramate.io
A modern approach to simplify and transform your way of managing Terraform, OpenTofu and Terragrunt. Reclaim agility and deploy with confidence.
- 117 days ago
- Twikoo | 一个简洁、安全、免费的静态网站评论系统
twikoo.js.org
一个简洁、安全、免费的静态网站评论系统
- 117 days ago
- XMPP Providers
providers.xmpp.net
It’s Your Choice. Which XMPP provider suits you best? The XMPP Providers project offers a curated list of XMPP providers for you to choose from.
- 117 days ago
- compudanzas — compudanzas
compudanzas.net
explorations of joyful and human-scale computing.
- 117 days ago
- AnyHedge - Decentralized leverage trading on Bitcoin Cash.
anyhedge.com
AnyHedge allows you to take leveraged long positions or hedge your fiat value. Permissionless, non-custodial, and on-chain.
- 117 days ago
- Welcome to BepinEx Docs! | BepInEx Docs
docs.bepinex.dev
BepInEx do***entation and API listing
- 117 days ago
- Home | Cemu Guide
cemu.cfw.guide
A complete guide to installing CEMU and optimizing performance.
- 117 days ago
- สล็อต168 สล็อตวอเลท เว็บตรงไม่ผ่านเอเย่นต์ ยิ่งเล่นยิ่งรวย
racemir.com
สล็อต168 เว็บเกมสล็อตออนไลน์วอเลทไม่ผ่านเอเย่นต์ที่พร้อมจะมอบความสนุกและความคุ้มค่าจากเกมเดิมพันที่ยิ่งเล่นก็ยิ่งรวยให้กับผู้เล่นทุกท่าน
- 117 days ago
- Proof of Purchase | Shop Girl at Carted | Substack
proofofpurchase.substack.com
This is a newsletter about shopping. Click to read Proof of Purchase, a Substack publication.
- 117 days ago
-
OSS Gate
| Doorkeeper
oss-gate.doorkeeper.jp
- 117 days ago
- Catkin Command Line Tools — catkin_tools 0.0.0 do***entation
catkin-tools.readthedocs.io
- 117 days ago
- JukeBooks | Audiobooks στα ελληνικά. Δωρεάν δοκιμή!
jukebooks.gr
Η μεγαλύτερη συνδρομητική πλατφόρμα audiobooks με εκατοντάδες best sellers, τις καλύτερες αφηγήσεις και την κορυφαία εφαρμογή σε αξιολογήσεις.
- 117 days ago
- TheoremOne Blog | Page 1 of 6 | Bits.TheoremOne
bits.citrusbyte.com
Page 1 of 6 | Learn how we design and build world-class products at TheoremOne
- 117 days ago
- Homepage - Hills & Dales Estate
hillsanddales.org
Discover the Beauty.
- 117 days ago
- Hively Tracker
hivelytracker.co.uk
- 117 days ago
- MagicArena Wiki | Fandom
magicarena.fandom.com
Magic Arena Wiki is a community-driven, collaborative guide and knowledge base for Wizards of the Coast's Magic: The Gathering Arena (aka Arena/MTGA).
- 117 days ago
- Privacy Policy - Consent - University of Richmond
rc.richmond.edu
- 117 days ago
- SpruceKit Introduction | SpruceKit
spruceid.dev
The open-source toolkit for decentralized identity
- 117 days ago
- Faculty of Indigenous Medicine | University of Colombo
iim.cmb.ac.lk
- 117 days ago
- vcc.szu.edu.cn
- 117 days ago
- r/SpaceX API Docs
docs.spacexdata.com
# NOTICE: The V3 API is deprecated as of November 2020! All existing links will continue to work, but no new data will be added or updated. I strongly encourage you to move to [V4](https://github.com/r-spacex/SpaceX-API/tree/master/docs#rspacex-api-docs)
## Disclaimer
*We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Space Exploration Technologies Inc (SpaceX), or any of its subsidiaries or its affiliates. The names SpaceX as well as related names, marks, emblems and images are registered trademarks of their respective owners.*
## Base URL
The most current version of the API is v3, with the following base URL
`https://api.spacexdata.com/v3`
## API Status
See the [status](https://status.spacexdata.com) page for details
## Authentication
No authentication is required to use this public API
## JSON Field Masking
Smaller JSON payloads can be generated through the use of the `filter` querystring. When using this querystring, all fields not included in the query will be omitted from the response.
For example, on the launches endpoint, you could include `filter=flight_number` to only return the flight number of every launch. Nested JSON fields can be expressed using a forward slash for each nested level. Ex: `filter=rocket/second_stage/payloads` to only return the payload objects from each launch. Multiple filters can be listed using a comma separator Ex: `filter=rocket/second_stage/payloads,flight_number,mission_name`. To select multiple properties within an object, use like so: `filter=rocket/second_stage/payloads/(payload_id,norad_id)`.
More information on the syntax can be found on the json-mask [github](https://github.com/nemtsov/json-mask) page.
## Pagination
All endpoints that return an array of objects can be paginated by using the `limit` and `offset` querystrings. This allows you to limit results and create pages of results to offset or skip.
On all endpoints that return an array, the header `spacex-api-count` is included with the total number of items in the array. This can be used to page through the results. By default, there is no limit set.
For example, the url `https://api.spacexdata.com/v3/launches?limit=1&offset=5` will only return launch #6, because we limited the results to a single launch, and skipped the first 5 launches using offset.
## Pretty Printing
JSON pretty printing is turned off by default to reduce payload size. It can be enabled by including
the querystring `pretty=true` in the url.
```http
GET https://api.spacexdata.com/v3/launches/latest?pretty=true
```
## Privacy
I do not log IP addresses or any personally identifiable information at the app or web server level. I collect timestamps,
HTTP methods, urls, and response times to adjust caching strategies on po***r endpoints. Below is a sample log line output:
```bash
[27/Aug/2018:00:42:06 +0000] "GET /v3/launches/latest HTTP/1.1" 200 - 51.478 ms
```
I use [Cloudflare](https://www.cloudflare.com/) in front of the API. Please see their [privacy policy](https://www.cloudflare.com/privacypolicy/) for more details on data collection policies.
## Rate Limiting
The API has a rate limit of 50 req/sec per IP address, if exceeded, a response of 429 will be given
until the rate drops back below 50 req/sec
## Caching
In general, the standard cache times are as follows:
* launches - 30 seconds
* ships, payloads, roadster - 5 minutes
* capsules, cores, launchpads, landpads - 1 hour
* dragons, rockets, missions, history, company info - 24 hours
## Date field FAQ's
Dates and Date related field explanations:
`launch_year` - Year of the launch in string form (Will be deprecated soon)
`launch_date_unix` - UTC launch date/time as a UNIX timestamp in seconds
`launch_date_utc` - UTC launch date/time in ISO 8601 format
`launch_date_local` - Local launch time with time zone offset in ISO 8601 format
`is_tentative` - Set as true until a launch has an time attached to the date
`tentative_max_precision` - Gives the current known precision for the launch date. Valid values are `quarter`, `half`, `year`, `month`, `day`, `hour`. This allows us to give more context when representing partial dates like `November 2019` with a precision of `month`
`tbd` - Set as false when the date includes a day number or a day number with a time, otherwise the date is considered to be TBD and set as true
`upcoming` - Set as true until the moment of launch
`static_fire_date_utc` - UTC date/time for the rocket static fire test in ISO 8601 format
`static_fire_date_unix` - UTC date/time for the rocket static fire test as a UNIX timestamp in seconds
- 117 days ago
- Nuxt Movies
nuxt-movies.vercel.app
A TMDB client built with Nuxt Image to show the potential of it ✨
- 117 days ago
- Gal Schlezinger
gal.hagever.com
A personal blog by Gal Schlezinger. Thoughts. Code. Whatever.
- 117 days ago
- Aditya V. Thakur
thakur.cs.ucdavis.edu
- 117 days ago
- Blog posts – R Geomatic
rcarto.github.io
- 117 days ago
- Voyager
voyager.adriel.cafe
🛸 A pragmatic navigation library for Jetpack Compose
- 117 days ago
- Łukasz Wójcik | software dev, photographer, various hats worn daily
lukaszwojcik.net
Personal homepage, photography website, social links, contact information.
- 117 days ago
- Free Support Forum - groupdocs.com
forum.groupdocs.com
Get FREE technical support for GroupDocs APIs from our developers using free support forum.
- 117 days ago
- Barcamp Bangalore
barcampbangalore.com
Barcamp Bangalore is an open event focused around people, ideas and collaboration. There is no fixed format and agenda. If you have an interesting topic to share or want to collaborate with folks with a variety of experience, BarCamp is the place for you. BarCamp is an one-of-a-kind event.
It is
- 117 days ago
- Office of Student Conduct and Conflict Resolution | Sites at Northeastern
osccr.sites.northeastern.edu
- 117 days ago
- Turnerj (aka. James Turner) - Programmer & Entrepreneur
turnerj.com
A programmer and entrepreneur with a love of cars, music and technology.
- 117 days ago
- Preston Lee's Blog – Health IT and software craftsman.
prestonlee.com
- 117 days ago
- Readme | 기술 직무 안내
naver-career.gitbook.io
NAVER 기술직군의 서비스/프로젝트별 직무 소개 페이지입니다. 해당 내용은 채용을 전제로 작성였으나 지원 시점에 요구 사항이 변경되거나 부서의 사정에 따라 채용이 마감되었을 수도 있습니다.
- 117 days ago
- Voyage autour du Monde : Idées Voyages - eu2008.fr
eu2008.fr
Destiny 2 will always deserve praise for becoming a warmer, more human game, in both its narrative world-building and its willingness to accommodate the day-to-day, real-life needs of its players.
- 117 days ago
- Vol Brest Ouessant, Brest et Rennes Belle-Ile - Finistair
finistair.fr
Finistair, compagnie bretonne depuis 1981, assure les liaisons aériennes Brest - Ouessant, Brest - Nantes et des vols de à la demande de Brest vers Belle-Ile, Ile d'Yeu, Gersey, Guernesey...
- 117 days ago
- Site not found · GitHub Pages
cityhubla.github.io
- 117 days ago
- Page Redirection
sarcasm.github.io
- 117 days ago
- About Me - Chi's Homepage | 张驰的主页
wellyzhang.github.io
About Machine Learning, Computer Vision, Life, Photo Gallery and Everything | Chi Zhang, Programmer, Machine Learning and Computer Vision
- 117 days ago
- JetBrains | QBCore Do***entation
docs.qbcore.org
Whichever technologies you use, there's a JetBrains tool to match!
- 117 days ago
- 404 Not Found
hanb.link
- 117 days ago
- Learn Blockchain Coding on XRP Ledger | XRPL Learning Portal
learn.xrpl.org
Build on the XRP Ledger, the world’s first major global carbon-neutral public blockchain. Explore courses from the basics of crypto and blockchain to coding.
- 117 days ago
- Sports Brackets - The latest schedules for your favorite teams.
sportsbrackets.net
The latest brackets and schedules for NBA, NBL, NFL, NHL, college basketball, college football and more. Free, printable PDF versions of your team's schedule.
- 117 days ago
- Homepage of Henryk Richter: Homepage
bax.comlab.uni-rostock.de
personal homepage of henryk richter
- 117 days ago