spacex 1.0.2 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.github/workflows/ruby.yml +26 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +6 -0
- data/.rubocop_todo.yml +1 -1
- data/CHANGELOG.md +54 -1
- data/CLAUDE.md +55 -0
- data/Dangerfile +28 -0
- data/Gemfile +12 -1
- data/README.md +52 -510
- data/docs/v3.md +525 -0
- data/docs/v4.md +179 -0
- data/lib/spacex/base_request.rb +8 -8
- data/lib/spacex/capsules.rb +10 -12
- data/lib/spacex/company.rb +7 -0
- data/lib/spacex/cores.rb +11 -14
- data/lib/spacex/crew.rb +15 -0
- data/lib/spacex/{dragon_capsules.rb → dragons.rb} +14 -16
- data/lib/spacex/history.rb +9 -2
- data/lib/spacex/landpads.rb +23 -0
- data/lib/spacex/launches.rb +35 -11
- data/lib/spacex/launchpads.rb +23 -0
- data/lib/spacex/models.rb +16 -0
- data/lib/spacex/payloads.rb +31 -2
- data/lib/spacex/rockets.rb +26 -3
- data/lib/spacex/ships.rb +22 -24
- data/lib/spacex/starlink.rb +16 -0
- data/lib/spacex/version.rb +1 -1
- data/lib/spacex.rb +2 -17
- data/spacex.gemspec +6 -9
- data/spec/coverage_helper.rb +5 -0
- data/spec/fixtures/spacex/v4/capsules/all.yml +122 -0
- data/spec/fixtures/spacex/v4/capsules/one.yml +89 -0
- data/spec/fixtures/spacex/v4/company.yml +80 -0
- data/spec/fixtures/spacex/v4/cores/all.yml +76 -0
- data/spec/fixtures/spacex/v4/cores/one.yml +75 -0
- data/spec/fixtures/spacex/v4/crew/all.yml +92 -0
- data/spec/fixtures/spacex/v4/crew/one.yml +74 -0
- data/spec/fixtures/spacex/v4/dragons/all.yml +101 -0
- data/spec/fixtures/spacex/v4/dragons/one.yml +189 -0
- data/spec/fixtures/spacex/v4/history/all.yml +85 -0
- data/spec/fixtures/spacex/v4/history/one.yml +168 -0
- data/spec/fixtures/spacex/v4/landpads/all.yml +85 -0
- data/spec/fixtures/spacex/v4/landpads/one.yml +172 -0
- data/spec/fixtures/spacex/v4/launches/all.yml +85 -0
- data/spec/fixtures/spacex/v4/launches/latest.yml +84 -0
- data/spec/fixtures/spacex/v4/launches/next.yml +84 -0
- data/spec/fixtures/spacex/v4/launches/one.yml +167 -0
- data/spec/fixtures/spacex/v4/launches/past.yml +85 -0
- data/spec/fixtures/spacex/v4/launches/upcoming.yml +97 -0
- data/spec/fixtures/spacex/v4/launchpads/all.yml +139 -0
- data/spec/fixtures/spacex/v4/launchpads/one.yml +225 -0
- data/spec/fixtures/spacex/v4/payloads/all.yml +85 -0
- data/spec/fixtures/spacex/v4/payloads/one.yml +167 -0
- data/spec/fixtures/spacex/v4/roadster.yml +90 -0
- data/spec/fixtures/spacex/v4/rockets/all.yml +76 -0
- data/spec/fixtures/spacex/v4/rockets/one.yml +84 -0
- data/spec/fixtures/spacex/v4/ships/all.yml +164 -0
- data/spec/fixtures/spacex/v4/ships/one.yml +248 -0
- data/spec/fixtures/spacex/v4/starlink/all.yml +17713 -0
- data/spec/fixtures/spacex/v4/starlink/one.yml +17798 -0
- data/spec/spacex/base_request_spec.rb +112 -0
- data/spec/spacex/capsules_spec.rb +19 -28
- data/spec/spacex/company_spec.rb +26 -0
- data/spec/spacex/cores_spec.rb +18 -31
- data/spec/spacex/crew_spec.rb +27 -0
- data/spec/spacex/dragons_spec.rb +39 -0
- data/spec/spacex/history_spec.rb +16 -40
- data/spec/spacex/landpads_spec.rb +35 -0
- data/spec/spacex/launches_spec.rb +28 -628
- data/spec/spacex/launchpads_spec.rb +34 -0
- data/spec/spacex/payloads_spec.rb +27 -51
- data/spec/spacex/roadster_spec.rb +5 -29
- data/spec/spacex/rockets_spec.rb +26 -194
- data/spec/spacex/ships_spec.rb +20 -51
- data/spec/spacex/starlink_spec.rb +28 -0
- data/spec/spacex/version_spec.rb +12 -0
- data/spec/spec_helper.rb +3 -9
- metadata +106 -137
- data/.ruby-version +0 -1
- data/.travis.yml +0 -21
- data/lib/spacex/api_info.rb +0 -7
- data/lib/spacex/company_info.rb +0 -7
- data/lib/spacex/endpoint.rb +0 -3
- data/lib/spacex/landing_pads.rb +0 -11
- data/lib/spacex/launch_pads.rb +0 -11
- data/lib/spacex/missions.rb +0 -18
- data/spec/fixtures/spacex/api_info/info.yml +0 -65
- data/spec/fixtures/spacex/capsules/C202.yml +0 -123
- data/spec/fixtures/spacex/capsules.yml +0 -83
- data/spec/fixtures/spacex/company_info/info.yml +0 -129
- data/spec/fixtures/spacex/cores/B1041.yml +0 -123
- data/spec/fixtures/spacex/cores.yml +0 -62
- data/spec/fixtures/spacex/dragon_capsules/info/dragon1.yml +0 -131
- data/spec/fixtures/spacex/dragon_capsules/info.yml +0 -77
- data/spec/fixtures/spacex/history/info/4.yml +0 -62
- data/spec/fixtures/spacex/history/info.yml +0 -62
- data/spec/fixtures/spacex/landing_pads/info/LZ-4.yml +0 -70
- data/spec/fixtures/spacex/landing_pads/info.yml +0 -68
- data/spec/fixtures/spacex/launch_pads/info/vafb_slc_4e.yml +0 -71
- data/spec/fixtures/spacex/launch_pads/info.yml +0 -104
- data/spec/fixtures/spacex/launches/68.yml +0 -69
- data/spec/fixtures/spacex/launches/all.yml +0 -62
- data/spec/fixtures/spacex/launches/info.yml +0 -62
- data/spec/fixtures/spacex/launches/latest.yml +0 -245
- data/spec/fixtures/spacex/launches/next.yml +0 -123
- data/spec/fixtures/spacex/launches/past.yml +0 -62
- data/spec/fixtures/spacex/launches/upcoming.yml +0 -64
- data/spec/fixtures/spacex/launches.yml +0 -62
- data/spec/fixtures/spacex/missions/F3364BF.yml +0 -157
- data/spec/fixtures/spacex/missions/info.yml +0 -62
- data/spec/fixtures/spacex/payloads/RatSat.yml +0 -62
- data/spec/fixtures/spacex/payloads/info.yml +0 -62
- data/spec/fixtures/spacex/roadster/info.yml +0 -133
- data/spec/fixtures/spacex/rockets/info/falcon1.yml +0 -139
- data/spec/fixtures/spacex/rockets/info/invalid.yml +0 -61
- data/spec/fixtures/spacex/rockets/info.yml +0 -105
- data/spec/fixtures/spacex/ships/info/AMERICANCHAMPION.yml +0 -125
- data/spec/fixtures/spacex/ships/info.yml +0 -139
- data/spec/spacex/api_info_spec.rb +0 -16
- data/spec/spacex/company_info_spec.rb +0 -27
- data/spec/spacex/dragon_capsules_spec.rb +0 -107
- data/spec/spacex/endpoint_spec.rb +0 -9
- data/spec/spacex/landing_pads_spec.rb +0 -72
- data/spec/spacex/launch_pads_spec.rb +0 -77
- data/spec/spacex/missions_spec.rb +0 -35
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.spacexdata.com/v4/ships/
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- Faraday v2.14.1
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
14
|
+
Accept:
|
|
15
|
+
- "*/*"
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Date:
|
|
22
|
+
- Sat, 21 Mar 2026 19:56:51 GMT
|
|
23
|
+
Content-Type:
|
|
24
|
+
- application/json; charset=utf-8
|
|
25
|
+
Transfer-Encoding:
|
|
26
|
+
- chunked
|
|
27
|
+
Connection:
|
|
28
|
+
- keep-alive
|
|
29
|
+
Access-Control-Allow-Origin:
|
|
30
|
+
- "*"
|
|
31
|
+
Access-Control-Expose-Headers:
|
|
32
|
+
- spacex-api-cache,spacex-api-response-time
|
|
33
|
+
Alt-Svc:
|
|
34
|
+
- h3=":443"; ma=86400
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=300
|
|
37
|
+
Content-Security-Policy:
|
|
38
|
+
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
39
|
+
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
40
|
+
''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests'
|
|
41
|
+
Etag:
|
|
42
|
+
- '"6268-yTouCVYyQjSVCZIee435H1AMAFE"'
|
|
43
|
+
Expect-Ct:
|
|
44
|
+
- max-age=0
|
|
45
|
+
Referrer-Policy:
|
|
46
|
+
- no-referrer
|
|
47
|
+
Server:
|
|
48
|
+
- cloudflare
|
|
49
|
+
Spacex-Api-Cache:
|
|
50
|
+
- HIT
|
|
51
|
+
Spacex-Api-Cache-Online:
|
|
52
|
+
- 'true'
|
|
53
|
+
Spacex-Api-Response-Time:
|
|
54
|
+
- 1ms
|
|
55
|
+
Strict-Transport-Security:
|
|
56
|
+
- max-age=15552000; includeSubDomains
|
|
57
|
+
Vary:
|
|
58
|
+
- Accept-Encoding
|
|
59
|
+
- Origin
|
|
60
|
+
X-Content-Type-Options:
|
|
61
|
+
- nosniff
|
|
62
|
+
X-Dns-Prefetch-Control:
|
|
63
|
+
- 'off'
|
|
64
|
+
X-Download-Options:
|
|
65
|
+
- noopen
|
|
66
|
+
X-Frame-Options:
|
|
67
|
+
- SAMEORIGIN
|
|
68
|
+
X-Permitted-Cross-Domain-Policies:
|
|
69
|
+
- none
|
|
70
|
+
X-Xss-Protection:
|
|
71
|
+
- '0'
|
|
72
|
+
Cf-Cache-Status:
|
|
73
|
+
- DYNAMIC
|
|
74
|
+
Nel:
|
|
75
|
+
- '{"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}'
|
|
76
|
+
Report-To:
|
|
77
|
+
- '{"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=gJm7%2F%2FXbYKi2tvQoSz0mCwXi7b3aTt2CBi8e3UY3x%2FguDy5MJIw1Sd9jIiiM668HiMU9a4TQFHd6VrRgjugecuq6TBoZMdVNz8quxnCs0yDwEQ%3D%3D"}]}'
|
|
78
|
+
Cf-Ray:
|
|
79
|
+
- 9dff85b59b1a1117-YYZ
|
|
80
|
+
body:
|
|
81
|
+
encoding: ASCII-8BIT
|
|
82
|
+
string: '[{"last_ais_update":null,"legacy_id":"AMERICANCHAMPION","model":null,"type":"Tug","roles":["Support
|
|
83
|
+
Ship","Barge Tug"],"imo":7434016,"mmsi":367020820,"abs":571252,"class":7604342,"mass_kg":266712,"mass_lbs":588000,"year_built":1976,"home_port":"Port
|
|
84
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:434663/mmsi:367020820/imo:7434016/vessel:AMERICAN_CHAMPION","image":"https://i.imgur.com/woCxpkj.jpg","name":"American
|
|
85
|
+
Champion","active":false,"launches":["5eb87cdeffd86e000604b330","5eb87cdfffd86e000604b331"],"id":"5ea6ed2d080df4000697c901"},{"last_ais_update":null,"legacy_id":"AMERICANISLANDER","model":null,"type":"Cargo","roles":["Dragon
|
|
86
|
+
Recovery"],"imo":null,"mmsi":367035570,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":null,"home_port":"Port
|
|
87
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:435112/mmsi:367035570/imo:0/vessel:AMERICAN_ISLANDER","image":"https://i.imgur.com/jmj8Sh2.jpg","name":"American
|
|
88
|
+
Islander","active":false,"launches":["5eb87ce0ffd86e000604b332","5eb87ce1ffd86e000604b333","5eb87ce4ffd86e000604b337","5eb87ce7ffd86e000604b33b"],"id":"5ea6ed2d080df4000697c902"},{"last_ais_update":null,"legacy_id":"AMERICANSPIRIT","model":null,"type":"Cargo","roles":["Support
|
|
89
|
+
Ship"],"imo":null,"mmsi":null,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":null,"home_port":"Port
|
|
90
|
+
of Los Angeles","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":null,"image":null,"name":"American
|
|
91
|
+
Spirit","active":false,"launches":["5eb87ce1ffd86e000604b334"],"id":"5ea6ed2d080df4000697c903"},{"last_ais_update":null,"legacy_id":"ASOG","model":null,"type":"Barge","roles":["ASDS
|
|
92
|
+
barge"],"imo":null,"mmsi":null,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":2021,"home_port":"Port
|
|
93
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":null,"image":null,"name":"A
|
|
94
|
+
Shortfall of Gravitas","active":true,"launches":["5fe3b11eb3467846b324216c","5fe3b15eb3467846b324216d","6161c94c6db1a92bfba85349","61d5eca1f88e4c5fc91f1eb7","61e048bbbe8d8b66799018d0"],"id":"5ea6ed2d080df4000697c904"},{"last_ais_update":null,"legacy_id":"BETTYRGAMBARELLA","model":null,"type":"Tug","roles":["ASDS
|
|
95
|
+
Tug"],"imo":7517478,"mmsi":368000890,"abs":562590,"class":7427463,"mass_kg":202302,"mass_lbs":446000,"year_built":1974,"home_port":"Port
|
|
96
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:1190856/mmsi:368000890/imo:7517478/vessel:BETTY_R_GAMBARELLA","image":"https://i.imgur.com/ngYgFnn.jpg","name":"Betty
|
|
97
|
+
R Gambarella","active":false,"launches":["5eb87d08ffd86e000604b357","5eb87d0affd86e000604b359"],"id":"5ea6ed2e080df4000697c905"},{"last_ais_update":null,"legacy_id":"ELSBETH3","model":null,"type":"Tug","roles":["ASDS
|
|
98
|
+
Tug"],"imo":8983375,"mmsi":367017460,"abs":null,"class":null,"mass_kg":273063,"mass_lbs":602000,"year_built":1999,"home_port":"Port
|
|
99
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:434560/mmsi:367017460/imo:8983375/vessel:ELSBETH_III","image":"https://i.imgur.com/1s5DUbJ.jpg","name":"Elsbeth
|
|
100
|
+
III","active":false,"launches":["5eb87ce8ffd86e000604b33c","5eb87ceaffd86e000604b33d","5eb87cecffd86e000604b33f","5eb87ceeffd86e000604b341","5eb87cf2ffd86e000604b344","5eb87cf3ffd86e000604b345","5eb87cf5ffd86e000604b346","5eb87cf6ffd86e000604b347","5eb87cf8ffd86e000604b348","5eb87cf9ffd86e000604b349","5eb87cfaffd86e000604b34a","5eb87d00ffd86e000604b34f","5eb87d04ffd86e000604b353","5eb87d09ffd86e000604b358"],"id":"5ea6ed2e080df4000697c906"},{"last_ais_update":null,"legacy_id":"GOMSCHIEF","model":null,"type":"High
|
|
101
|
+
Speed Craft","roles":["Fairing Recovery"],"imo":9744453,"mmsi":338035000,"abs":1247527,"class":14245747,"mass_kg":449964,"mass_lbs":992000,"year_built":2014,"home_port":"Port
|
|
102
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:5126789/mmsi:338035000/imo:9744453/vessel:GO_MS_CHIEF","image":"https://imgur.com/NHsx95l.jpg","name":"GO
|
|
103
|
+
Ms Chief","active":false,"launches":["5eb87d3bffd86e000604b37f","5eb87d3fffd86e000604b382","5eb87d41ffd86e000604b383","5eb87d44ffd86e000604b386","5eb87d45ffd86e000604b387","5eb87d46ffd86e000604b389","5eb87d50ffd86e000604b394","5ed9819a1f30554030d45c29","5ed981d91f30554030d45c2a","5eb87d47ffd86e000604b38a","5ef6a2090059c33cee4a828b","5ef6a2bf0059c33cee4a828c","5ef6a2e70059c33cee4a8293","5eb87d4cffd86e000604b38d","5fb95b3f3a88ae63c954603c","5eb87d4fffd86e000604b393","5fbfecce54ceb10a5664c80a","5fd386aa7faea57d297c86c1","5ff6554f9257f579ee3a6c5f"],"id":"5ea6ed2e080df4000697c907"},{"last_ais_update":null,"legacy_id":"GOMSTREE","model":null,"type":"High
|
|
104
|
+
Speed Craft","roles":["Fairing Recovery"],"imo":9744465,"mmsi":368059550,"abs":1249191,"class":15252765,"mass_kg":449964,"mass_lbs":992000,"year_built":2015,"home_port":"Port
|
|
105
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:3439091/mmsi:368099550/imo:9744465/vessel:GO_MS_TREE","image":"https://i.imgur.com/MtEgYbY.jpg","name":"GO
|
|
106
|
+
Ms Tree","active":false,"launches":["5eb87d0dffd86e000604b35b","5eb87d0fffd86e000604b35d","5eb87d14ffd86e000604b361","5eb87d16ffd86e000604b363","5eb87d1affd86e000604b367","5eb87d1fffd86e000604b36b","5eb87d25ffd86e000604b370","5eb87d35ffd86e000604b37a","5eb87d37ffd86e000604b37c","5eb87d39ffd86e000604b37d","5eb87d3bffd86e000604b37f","5eb87d3cffd86e000604b380","5eb87d3fffd86e000604b382","5eb87d41ffd86e000604b383","5eb87d44ffd86e000604b386","5eb87d45ffd86e000604b387","5eb87d46ffd86e000604b389","5eb87d50ffd86e000604b394","5ed9819a1f30554030d45c29","5ed981d91f30554030d45c2a","5ef6a1e90059c33cee4a828a","5ef6a2090059c33cee4a828b","5ef6a2bf0059c33cee4a828c","5ef6a2e70059c33cee4a8293","5f8399fb818d8b59f5740d43","5eb87d4fffd86e000604b393","5fbfecce54ceb10a5664c80a","5fd386aa7faea57d297c86c1","5ff6554f9257f579ee3a6c5f"],"id":"5ea6ed2e080df4000697c908"},{"last_ais_update":null,"legacy_id":"SHANNON","model":null,"type":"Cargo","roles":["Support
|
|
107
|
+
Ship","Fairing Recovery"],"imo":9566887,"mmsi":367550000,"abs":1221524,"class":9204358,"mass_kg":451778,"mass_lbs":996000,"year_built":2009,"home_port":"Port
|
|
108
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:452540/mmsi:367550000/imo:9566887/vessel:GO_NAVIGATOR","image":"https://i.imgur.com/MjNWzhO.jpg","name":"Shannon","active":true,"launches":["5eb87d2dffd86e000604b376","5eb87d30ffd86e000604b378","5eb87d35ffd86e000604b37a","5eb87d37ffd86e000604b37c","5eb87d39ffd86e000604b37d","5eb87d3cffd86e000604b380","5eb87d46ffd86e000604b388","5eb87d4dffd86e000604b38e","600f9a718f798e2a4d5f979d","600f9a8d8f798e2a4d5f979e","5fe3af58b3467846b324215f","6079bd399a06446e8c61bf77","5fe3af6db3467846b3242160","5fe3b15eb3467846b324216d","61eefaa89eb1064137a1bd73"],"id":"5ea6ed2e080df4000697c909"},{"last_ais_update":null,"legacy_id":"GOPURSUIT","model":null,"type":"Cargo","roles":["Support
|
|
109
|
+
Ship","Fairing Recovery"],"imo":9458884,"mmsi":367191410,"abs":1201189,"class":7174230,"mass_kg":502999,"mass_lbs":1108925,"year_built":2007,"home_port":"Port
|
|
110
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:439594/mmsi:367191410/imo:9458884/vessel:GO_PURSUIT","image":"https://i.imgur.com/5w1ZWre.jpg","name":"GO
|
|
111
|
+
Pursuit","active":false,"launches":["5eb87d18ffd86e000604b365","5eb87d19ffd86e000604b366","5eb87d1bffd86e000604b368","5eb87d1effd86e000604b36a"],"id":"5ea6ed2e080df4000697c90a"},{"last_ais_update":null,"legacy_id":"GOQUEST","model":null,"type":"Cargo","roles":["Support
|
|
112
|
+
Ship"],"imo":1155515,"mmsi":367564890,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":2014,"home_port":"Port
|
|
113
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:450521/mmsi:367564890/imo:1155515/vessel:GO_QUEST","image":"https://i.imgur.com/ABXtHKa.jpg","name":"GO
|
|
114
|
+
Quest","active":true,"launches":["5eb87ce8ffd86e000604b33c","5eb87ceaffd86e000604b33d","5eb87cecffd86e000604b33f","5eb87ceeffd86e000604b341","5eb87cf2ffd86e000604b344","5eb87cf3ffd86e000604b345","5eb87cf5ffd86e000604b346","5eb87cf6ffd86e000604b347","5eb87cf8ffd86e000604b348","5eb87cf9ffd86e000604b349","5eb87cfaffd86e000604b34a","5eb87d00ffd86e000604b34f","5eb87d04ffd86e000604b353","5eb87d09ffd86e000604b358","5eb87d0cffd86e000604b35a","5eb87d11ffd86e000604b35f","5eb87d18ffd86e000604b365","5eb87d19ffd86e000604b366","5eb87d1effd86e000604b36a","5eb87d22ffd86e000604b36d","5eb87d26ffd86e000604b371","5eb87d2dffd86e000604b376","5eb87d2effd86e000604b377","5eb87d30ffd86e000604b378","5eb87d35ffd86e000604b37a","5eb87d3cffd86e000604b380","5eb87d3fffd86e000604b382","5eb87d41ffd86e000604b383","5eb87d46ffd86e000604b388","5eb87d46ffd86e000604b389","5eb87d50ffd86e000604b394","5ed981d91f30554030d45c2a","5ef6a1e90059c33cee4a828a","5ef6a2090059c33cee4a828b","5ef6a2bf0059c33cee4a828c","5ef6a2e70059c33cee4a8293","5eb87d4dffd86e000604b38e","5fb95b3f3a88ae63c954603c","5eb87d4effd86e000604b391","5fbfecce54ceb10a5664c80a","5ff6554f9257f579ee3a6c5f","60428aafc041c16716f73cd7","60428ac4c041c16716f73cd8","605b4b95aa5433645e37d041","6079bd399a06446e8c61bf77","5fe3af84b3467846b3242161","5fe3af6db3467846b3242160","5fe3b107b3467846b324216b","61bba806437241381bf7061e"],"id":"5ea6ed2f080df4000697c90b"},{"last_ais_update":null,"legacy_id":"MEGAN","model":null,"type":"Cargo","roles":["Support
|
|
115
|
+
Ship","Fairing Recovery"],"imo":9591648,"mmsi":366584000,"abs":1226876,"class":10204360,"mass_kg":450870,"mass_lbs":994000,"year_built":2010,"home_port":"Port
|
|
116
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:426008/mmsi:366584000/imo:9591648/vessel:GO_SEARCHER","image":"https://i.imgur.com/X4YQJZf.jpg","name":"Megan","active":true,"launches":["5eb87ce8ffd86e000604b33c","5eb87ceaffd86e000604b33d","5eb87cecffd86e000604b33f","5eb87ceeffd86e000604b341","5eb87cf2ffd86e000604b344","5eb87cf3ffd86e000604b345","5eb87cf5ffd86e000604b346","5eb87cf6ffd86e000604b347","5eb87cf8ffd86e000604b348","5eb87cf9ffd86e000604b349","5eb87cfaffd86e000604b34a","5eb87d00ffd86e000604b34f","5eb87d01ffd86e000604b350","5eb87d04ffd86e000604b353","5eb87d13ffd86e000604b360","5eb87d2dffd86e000604b376","5eb87d30ffd86e000604b378","5eb87d3dffd86e000604b381","5eb87d46ffd86e000604b388","5eb87d4dffd86e000604b38e","5fb95b3f3a88ae63c954603c","5eb87d4bffd86e000604b38c","5f8399fb818d8b59f5740d43","5fd386aa7faea57d297c86c1","600f9a718f798e2a4d5f979d","600f9a8d8f798e2a4d5f979e","6079bd399a06446e8c61bf77","5fe3b15eb3467846b324216d"],"id":"5ea6ed2f080df4000697c90c"},{"last_ais_update":null,"legacy_id":"HAWK","model":null,"type":"Tug","roles":["ASDS
|
|
117
|
+
Tug"],"imo":9103295,"mmsi":366943250,"abs":1033239,"class":9523438,"mass_kg":508023,"mass_lbs":1120000,"year_built":1995,"home_port":"Port
|
|
118
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:430027/mmsi:366943250/imo:9103295/vessel:HAWK","image":"https://i.imgur.com/hGWWupT.jpg","name":"HAWK","active":false,"launches":["5eb87d0cffd86e000604b35a","5eb87d0dffd86e000604b35b","5eb87d13ffd86e000604b360","5eb87d18ffd86e000604b365","5eb87d1effd86e000604b36a","5eb87d20ffd86e000604b36c","5eb87d22ffd86e000604b36d","5eb87d24ffd86e000604b36f","5eb87d39ffd86e000604b37d","5eb87d39ffd86e000604b37e","5eb87d3bffd86e000604b37f","5eb87d3cffd86e000604b380","5eb87d3fffd86e000604b382","5eb87d41ffd86e000604b383","5eb87d43ffd86e000604b385","5eb87d46ffd86e000604b388","5fb95b3f3a88ae63c954603c","5eb87d4effd86e000604b391","5eb87d4fffd86e000604b393","5fbfecce54ceb10a5664c80a","5fbfecfe54ceb10a5664c80b","600f9a8d8f798e2a4d5f979e","605b4b6aaa5433645e37d03f"],"id":"5ea6ed2f080df4000697c90d"},{"last_ais_update":null,"legacy_id":"HOLLYWOOD","model":null,"type":"Tug","roles":["ASDS
|
|
119
|
+
Tug"],"imo":8428674,"mmsi":366955620,"abs":null,"class":null,"mass_kg":320236,"mass_lbs":706000,"year_built":1985,"home_port":"Fort
|
|
120
|
+
Lauderdale","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:430344/mmsi:367648150/imo:8428674/vessel:CAITLIN","image":"https://photos.marinetraffic.com/ais/showphoto.aspx?photoid=3406596","name":"Hollywood","active":true,"launches":["5eb87d2dffd86e000604b376","5eb87d2effd86e000604b377","5eb87d30ffd86e000604b378","5eb87d35ffd86e000604b37a"],"id":"5ea6ed2f080df4000697c90e"},{"last_ais_update":null,"legacy_id":"JRTI-1","model":"Marmac
|
|
121
|
+
300","type":"Barge","roles":["ASDS barge"],"imo":null,"mmsi":null,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":2014,"home_port":"Port
|
|
122
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":null,"image":"https://i.imgur.com/RJPmP8G.jpg","name":"Just
|
|
123
|
+
Read The Instructions 1","active":false,"launches":["5eb87ce8ffd86e000604b33c","5eb87cecffd86e000604b33f"],"id":"5ea6ed2f080df4000697c90f"},{"last_ais_update":null,"legacy_id":"JRTI-2","model":"Marmac
|
|
124
|
+
303","type":"Barge","roles":["ASDS barge"],"imo":null,"mmsi":null,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":2015,"home_port":"Port
|
|
125
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":33.7291858,"longitude":-118.262015,"link":null,"image":"https://i.imgur.com/7VMC0Gn.jpg","name":"Just
|
|
126
|
+
Read The Instructions 2","active":true,"launches":["5eb87cf0ffd86e000604b343","5eb87cfdffd86e000604b34c","5eb87d05ffd86e000604b354","5eb87d08ffd86e000604b357","5eb87d0affd86e000604b359","5eb87d1fffd86e000604b36b","5eb87d25ffd86e000604b370","5eb87d28ffd86e000604b373","5ef6a2090059c33cee4a828b","5ef6a2e70059c33cee4a8293","5eb87d4dffd86e000604b38e","5eb87d4bffd86e000604b38c","5eb87d4fffd86e000604b393","5fbfecce54ceb10a5664c80a","600f9a718f798e2a4d5f979d","605b4b6aaa5433645e37d03f","5fe3af6db3467846b3242160","5eb87d4effd86e000604b390","607a37565a906a44023e0866","618faad2563d69573ed8ca9d","6161d2006db1a92bfba85356"],"id":"5ea6ed2f080df4000697c910"},{"last_ais_update":null,"legacy_id":"KELLYC","model":null,"type":"Tug","roles":["ASDS
|
|
127
|
+
Tug"],"imo":null,"mmsi":367693690,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":null,"home_port":"Port
|
|
128
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:3718707/mmsi:367693690/imo:0/vessel:KELLY_C","image":null,"name":"Kelly
|
|
129
|
+
C","active":false,"launches":["5eb87d05ffd86e000604b354"],"id":"5ea6ed2f080df4000697c911"},{"last_ais_update":null,"legacy_id":"NRCQUEST","model":null,"type":"Cargo","roles":["Support
|
|
130
|
+
Ship","Dragon Recovery"],"imo":9271195,"mmsi":367486370,"abs":1134613,"class":2115909,"mass_kg":440892,"mass_lbs":972000,"year_built":2002,"home_port":"Port
|
|
131
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:447294/mmsi:367486370/imo:9271195/vessel:NRC_QUEST","image":"https://i.imgur.com/GvtuYUN.jpg","name":"NRC
|
|
132
|
+
Quest","active":true,"launches":["5eb87ce8ffd86e000604b33c","5eb87cecffd86e000604b33f","5eb87cf0ffd86e000604b343","5eb87cf3ffd86e000604b345","5eb87cf9ffd86e000604b349","5eb87cfdffd86e000604b34c","5eb87cfeffd86e000604b34d","5eb87d03ffd86e000604b352","5eb87d05ffd86e000604b354","5eb87d07ffd86e000604b356","5eb87d0effd86e000604b35c","5eb87d16ffd86e000604b364","5eb87d1cffd86e000604b369","5eb87d1fffd86e000604b36b","5eb87d25ffd86e000604b370","5eb87d28ffd86e000604b373","5fe3b107b3467846b324216b","61bba806437241381bf7061e"],"id":"5ea6ed30080df4000697c912"},{"last_ais_update":null,"legacy_id":"OCISLY","model":"Marmac
|
|
133
|
+
304","type":"Barge","roles":["ASDS barge"],"imo":null,"mmsi":null,"abs":null,"class":null,"mass_kg":null,"mass_lbs":null,"year_built":2015,"home_port":"Port
|
|
134
|
+
of Los Angeles","status":null,"speed_kn":null,"course_deg":null,"latitude":33.7291858,"longitude":-118.262015,"link":null,"image":"https://i.imgur.com/28dCx6G.jpg","name":"Of
|
|
135
|
+
Course I Still Love You","active":true,"launches":["5eb87cf2ffd86e000604b344","5eb87cf3ffd86e000604b345","5eb87cf6ffd86e000604b347","5eb87cf8ffd86e000604b348","5eb87cfaffd86e000604b34a","5eb87d00ffd86e000604b34f","5eb87d04ffd86e000604b353","5eb87d0cffd86e000604b35a","5eb87d0dffd86e000604b35b","5eb87d13ffd86e000604b360","5eb87d18ffd86e000604b365","5eb87d19ffd86e000604b366","5eb87d1effd86e000604b36a","5eb87d20ffd86e000604b36c","5eb87d22ffd86e000604b36d","5eb87d24ffd86e000604b36f","5eb87d2affd86e000604b374","5eb87d2bffd86e000604b375","5eb87d2dffd86e000604b376","5eb87d2effd86e000604b377","5eb87d30ffd86e000604b378","5eb87d35ffd86e000604b37a","5eb87d39ffd86e000604b37d","5eb87d3bffd86e000604b37f","5eb87d3cffd86e000604b380","5eb87d3fffd86e000604b382","5eb87d41ffd86e000604b383","5eb87d43ffd86e000604b385","5eb87d44ffd86e000604b386","5eb87d46ffd86e000604b388","5ed9819a1f30554030d45c29","5ed981d91f30554030d45c2a","5ef6a2090059c33cee4a828b","5ef6a2bf0059c33cee4a828c","5eb87d4cffd86e000604b38d","5fb95b3f3a88ae63c954603c","5eb87d4effd86e000604b391","5fd386aa7faea57d297c86c1","5ff6554f9257f579ee3a6c5f","600f9a5e8f798e2a4d5f979c","5fbfecfe54ceb10a5664c80b","600f9a8d8f798e2a4d5f979e","60428aafc041c16716f73cd7","60428ac4c041c16716f73cd8","5fe3af58b3467846b324215f","605b4b7daa5433645e37d040","6079bd1c9a06446e8c61bf76","605b4b95aa5433645e37d041","6079bd399a06446e8c61bf77","5fe3af84b3467846b3242161","60e3bf0d73359e1e20335c37","5fe3b107b3467846b324216b","61bba806437241381bf7061e"],"id":"5ea6ed30080df4000697c913"},{"last_ais_update":null,"legacy_id":"PACIFICFREEDOM","model":null,"type":"Tug","roles":["ASDS
|
|
136
|
+
Tug"],"imo":null,"mmsi":367639830,"abs":570902,"class":7602544,"mass_kg":89811,"mass_lbs":198000,"year_built":1976,"home_port":"Port
|
|
137
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:4249791/mmsi:367639830/imo:0/vessel:PACIFIC_FREEDOM","image":"https://i.imgur.com/eJWx70Z.jpg","name":"Pacific
|
|
138
|
+
Freeedom","active":true,"launches":["5eb87cf0ffd86e000604b343","5eb87d1fffd86e000604b36b","5eb87d25ffd86e000604b370","5eb87d28ffd86e000604b373"],"id":"5ea6ed30080df4000697c914"},{"last_ais_update":null,"legacy_id":"PACIFICWARRIOR","model":null,"type":"Tug","roles":["ASDS
|
|
139
|
+
Tug"],"imo":7641384,"mmsi":367008820,"abs":566282,"class":7434575,"mass_kg":351080,"mass_lbs":774000,"year_built":1974,"home_port":"Port
|
|
140
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:434121/mmsi:368144990/imo:7641384/vessel:PACIFIC_WARRIOR","image":"https://i.imgur.com/qdNDmYs.jpg","name":"Pacific
|
|
141
|
+
Warrior","active":false,"launches":["5eb87cfdffd86e000604b34c"],"id":"5ea6ed30080df4000697c915"},{"last_ais_update":null,"legacy_id":"RACHEL","model":null,"type":"Tug","roles":["ASDS
|
|
142
|
+
Tug"],"imo":7600378,"mmsi":367488370,"abs":576417,"class":7611785,"mass_kg":312072,"mass_lbs":688000,"year_built":1976,"home_port":"Port
|
|
143
|
+
Canaveral","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:447352/mmsi:367488370/imo:7600378/vessel:RACHEL","image":"https://i.imgur.com/IpYJWUW.jpg","name":"RACHEL","active":false,"launches":["5eb87d19ffd86e000604b366"],"id":"5ea6ed30080df4000697c916"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Tug","roles":["Support
|
|
144
|
+
Ship","Barge Tug"],"imo":7390765,"mmsi":100199370,"abs":568498,"class":7515789,"mass_kg":843682,"mass_lbs":1860000,"year_built":1975,"home_port":"Port
|
|
145
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:451328/mmsi:100199370/imo:7390765/vessel:FINN_FALGOUT","image":"https://imgur.com/WGfvh9I.png","name":"Finn
|
|
146
|
+
Falgout","active":true,"launches":["5eb87d44ffd86e000604b386","5eb87d45ffd86e000604b387","5ed9819a1f30554030d45c29","5ed981d91f30554030d45c2a","5ef6a1e90059c33cee4a828a","5ef6a2bf0059c33cee4a828c","5eb87d4cffd86e000604b38d","5eb87d4dffd86e000604b38e","5eb87d4bffd86e000604b38c","600f9a718f798e2a4d5f979d","60428aafc041c16716f73cd7","60428ac4c041c16716f73cd8","605b4b6aaa5433645e37d03f","6079bd1c9a06446e8c61bf76","6079bd399a06446e8c61bf77","5fe3af6db3467846b3242160","5eb87d4effd86e000604b390","607a37565a906a44023e0866","5fe3b15eb3467846b324216d","6161c94c6db1a92bfba85349","5fe3afc1b3467846b3242164"],"id":"5ee68c683c228f36bd5809b5"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Tug","roles":["Support
|
|
147
|
+
Ship","Barge Tug"],"imo":8218938,"mmsi":303350200,"abs":1134122,"class":3113494,"mass_kg":741170,"mass_lbs":1634000,"year_built":2003,"home_port":"Port
|
|
148
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:357782/mmsi:303350200/imo:8218938/vessel:LAUREN_FOSS","image":"https://imgur.com/bRAJ52J.png","name":"Lauren
|
|
149
|
+
Foss","active":false,"launches":["5ff6554f9257f579ee3a6c5f"],"id":"601742b20c87b90be7bb7e86"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Cargo","roles":["Fairing
|
|
150
|
+
Recovery","Support Ship"],"imo":1259393,"mmsi":367655260,"abs":1259393,"class":15235966,"mass_kg":2097411,"mass_lbs":4623999,"year_built":2014,"home_port":"Port
|
|
151
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:2764827/mmsi:367655260/imo:9670638/vessel:SHELIA_BORDELON","image":"https://imgur.com/LU8aodR.png","name":"Shelia
|
|
152
|
+
Bordelon","active":true,"launches":["60428aafc041c16716f73cd7","605b4b6aaa5433645e37d03f","605b4b7daa5433645e37d040","6079bd1c9a06446e8c61bf76","605b4b95aa5433645e37d041"],"id":"6059166413f40e27e8af34b6"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Tug","roles":["Support
|
|
153
|
+
Ship","Barge Tug"],"imo":8971841,"mmsi":366890710,"abs":null,"class":null,"mass_kg":445428,"mass_lbs":982000,"year_built":1944,"home_port":"Port
|
|
154
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:428760/mmsi:366890710/imo:8971841/vessel:MR_JONAH","image":"https://imgur.com/FNElWUf.png","name":"Mr.
|
|
155
|
+
Jonah","active":true,"launches":["605b4b7daa5433645e37d040","605b4b95aa5433645e37d041","5fe3af84b3467846b3242161"],"id":"608c1a06cf7f3d6152666ad4"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Cargo","roles":["Fairing
|
|
156
|
+
Recovery","Support Ship"],"imo":9672648,"mmsi":367612350,"abs":1244594,"class":15249748,"mass_kg":4616663,"mass_lbs":10178000,"year_built":2015,"home_port":"Port
|
|
157
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:3279102/mmsi:367612350/imo:9672648/vessel:HOS_BRIARWOOD","image":"https://i.imgur.com/0WukQlb.png","name":"HOS
|
|
158
|
+
Briarwood","active":true,"launches":["5eb87d4effd86e000604b390","600f9b6d8f798e2a4d5f979f"],"id":"60c8c7a45d4819007ea69871"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Cargo","roles":["Fairing
|
|
159
|
+
Recovery","Support Ship"],"imo":9529889,"mmsi":368485000,"abs":1223077,"class":9195307,"mass_kg":2719740,"mass_lbs":5996000,"year_built":2009,"home_port":"Port
|
|
160
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:454774/mmsi:368485000/imo:9529889/vessel:DOUG","image":"https://i.imgur.com/XF1FBB8.png","name":"Doug","active":true,"launches":["607a37565a906a44023e0866","5fe3b15eb3467846b324216d","6161d2006db1a92bfba85356","61d5eca1f88e4c5fc91f1eb7","61e048bbbe8d8b66799018d0","6243ade2af52800c6e919255"],"id":"614251b711a64135defb3654"},{"last_ais_update":null,"legacy_id":null,"model":null,"type":"Cargo","roles":["Fairing
|
|
161
|
+
Recovery","Support Ship"],"imo":9529695,"mmsi":368456000,"abs":1220625,"class":9195228,"mass_kg":2719740,"mass_lbs":5996000,"year_built":2009,"home_port":"Port
|
|
162
|
+
Canaveral","status":null,"speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:454731/mmsi:368456000/imo:9529695/vessel:BOB","image":"https://i.imgur.com/Wr1slIc.png","name":"Bob","active":true,"launches":["618faad2563d69573ed8ca9d","6161c94c6db1a92bfba85349","5fe3afc1b3467846b3242164","6243ada6af52800c6e919253"],"id":"618fad7e563d69573ed8caa9"}]'
|
|
163
|
+
recorded_at: Sat, 21 Mar 2026 19:56:51 GMT
|
|
164
|
+
- request:
|
|
165
|
+
method: get
|
|
166
|
+
uri: https://api.spacexdata.com/v4/ships/5ea6ed2d080df4000697c901
|
|
167
|
+
body:
|
|
168
|
+
encoding: US-ASCII
|
|
169
|
+
string: ''
|
|
170
|
+
headers:
|
|
171
|
+
User-Agent:
|
|
172
|
+
- Faraday v2.14.1
|
|
173
|
+
Accept-Encoding:
|
|
174
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
175
|
+
Accept:
|
|
176
|
+
- "*/*"
|
|
177
|
+
response:
|
|
178
|
+
status:
|
|
179
|
+
code: 200
|
|
180
|
+
message: OK
|
|
181
|
+
headers:
|
|
182
|
+
Date:
|
|
183
|
+
- Sat, 21 Mar 2026 19:57:10 GMT
|
|
184
|
+
Content-Type:
|
|
185
|
+
- application/json; charset=utf-8
|
|
186
|
+
Content-Length:
|
|
187
|
+
- '653'
|
|
188
|
+
Connection:
|
|
189
|
+
- keep-alive
|
|
190
|
+
Access-Control-Allow-Origin:
|
|
191
|
+
- "*"
|
|
192
|
+
Access-Control-Expose-Headers:
|
|
193
|
+
- spacex-api-cache,spacex-api-response-time
|
|
194
|
+
Alt-Svc:
|
|
195
|
+
- h3=":443"; ma=86400
|
|
196
|
+
Cache-Control:
|
|
197
|
+
- max-age=300
|
|
198
|
+
Content-Security-Policy:
|
|
199
|
+
- 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self''
|
|
200
|
+
https: data:;frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src
|
|
201
|
+
''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests'
|
|
202
|
+
Etag:
|
|
203
|
+
- '"28d-aOE8syxtab65e1/wR2qFYWh2dLg"'
|
|
204
|
+
Expect-Ct:
|
|
205
|
+
- max-age=0
|
|
206
|
+
Referrer-Policy:
|
|
207
|
+
- no-referrer
|
|
208
|
+
Server:
|
|
209
|
+
- cloudflare
|
|
210
|
+
Spacex-Api-Cache:
|
|
211
|
+
- MISS
|
|
212
|
+
Spacex-Api-Cache-Online:
|
|
213
|
+
- 'true'
|
|
214
|
+
Spacex-Api-Response-Time:
|
|
215
|
+
- 2ms
|
|
216
|
+
Strict-Transport-Security:
|
|
217
|
+
- max-age=15552000; includeSubDomains
|
|
218
|
+
Vary:
|
|
219
|
+
- Accept-Encoding
|
|
220
|
+
- Origin
|
|
221
|
+
X-Content-Type-Options:
|
|
222
|
+
- nosniff
|
|
223
|
+
X-Dns-Prefetch-Control:
|
|
224
|
+
- 'off'
|
|
225
|
+
X-Download-Options:
|
|
226
|
+
- noopen
|
|
227
|
+
X-Frame-Options:
|
|
228
|
+
- SAMEORIGIN
|
|
229
|
+
X-Permitted-Cross-Domain-Policies:
|
|
230
|
+
- none
|
|
231
|
+
X-Xss-Protection:
|
|
232
|
+
- '0'
|
|
233
|
+
Cf-Cache-Status:
|
|
234
|
+
- DYNAMIC
|
|
235
|
+
Nel:
|
|
236
|
+
- '{"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}'
|
|
237
|
+
Report-To:
|
|
238
|
+
- '{"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fgeFIK86aeBB0%2F4RCbj%2Fz0lE%2BCjZHH42Xb06LRLsUmzO7cziZSq2xtxUlrdUr%2Fo1TIltszL8hBrvc8naeuQZMwnvzYMmBsIYbI0fuZotC%2FsuNg%3D%3D"}]}'
|
|
239
|
+
Cf-Ray:
|
|
240
|
+
- 9dff862a7ead44b0-YYZ
|
|
241
|
+
body:
|
|
242
|
+
encoding: ASCII-8BIT
|
|
243
|
+
string: '{"last_ais_update":null,"legacy_id":"AMERICANCHAMPION","model":null,"type":"Tug","roles":["Support
|
|
244
|
+
Ship","Barge Tug"],"imo":7434016,"mmsi":367020820,"abs":571252,"class":7604342,"mass_kg":266712,"mass_lbs":588000,"year_built":1976,"home_port":"Port
|
|
245
|
+
of Los Angeles","status":"","speed_kn":null,"course_deg":null,"latitude":null,"longitude":null,"link":"https://www.marinetraffic.com/en/ais/details/ships/shipid:434663/mmsi:367020820/imo:7434016/vessel:AMERICAN_CHAMPION","image":"https://i.imgur.com/woCxpkj.jpg","name":"American
|
|
246
|
+
Champion","active":false,"launches":["5eb87cdeffd86e000604b330","5eb87cdfffd86e000604b331"],"id":"5ea6ed2d080df4000697c901"}'
|
|
247
|
+
recorded_at: Sat, 21 Mar 2026 19:57:10 GMT
|
|
248
|
+
recorded_with: VCR 6.4.0
|