Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 πŸ“‘

Awesome Lists containing this project

README

        

# deep_space_network_api


dsn

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"
}
```