Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angelhtml/deep_space_network_api
live deep space network API π‘
https://github.com/angelhtml/deep_space_network_api
angelcodestyle api api-rest dsn jameswebb jwst livedata nasa nasa-api nasa-data nodejs nodejs-api science science-research space spacex spacex-api
Last synced: 13 days ago
JSON representation
live deep space network API π‘
- Host: GitHub
- URL: https://github.com/angelhtml/deep_space_network_api
- Owner: angelhtml
- Created: 2023-09-10T19:31:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-20T12:38:45.000Z (9 months ago)
- Last Synced: 2024-11-12T15:25:09.040Z (2 months ago)
- Topics: angelcodestyle, api, api-rest, dsn, jameswebb, jwst, livedata, nasa, nasa-api, nasa-data, nodejs, nodejs-api, science, science-research, space, spacex, spacex-api
- Language: JavaScript
- Homepage: https://eyes.nasa.gov/apps/dsn-now/dsn.html
- Size: 354 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deep_space_network_api
live deep space network API π‘
Install all packages
```cmd
npm install
```run the api server
```cmd
npm run api
```π using the post method to get the data
Get the stations data
```http
POST / HTTP/1.1
Host: localhost:3001
Content-Type: application/json
Content-Length: 30{
"request": "station"
}
```Get the antennas data
```http
POST / HTTP/1.1
Host: localhost:3001
Content-Type: application/json
Content-Length: 30{
"request": "dish"
}
```Get the all data
```http
POST / HTTP/1.1
Host: localhost:3001
Content-Type: application/json
Content-Length: 30{
"request": "all"
}
```