n8n Workflow

Send Location Updates Of The Iss Every Minute To A Queue In Aws Sqs

This n8n workflow sends tasks and integrates with various services. Send Location Updates Of The Iss Every Minute To A Queue In Aws Sqs - ready to import and run in your n8n instance.

n8n workflow.json

About This Script

This n8n workflow sends tasks and integrates with various services. Send Location Updates Of The Iss Every Minute To A Queue In Aws Sqs - ready to import and run in your n8n instance.
Features:
  • Makes HTTP requests to external APIs
  • Scheduled automation with cron triggers
  • Scheduled execution
  • Sends notifications or updates
Source Code
{
    "nodes": [
        {
            "name": "AWS SQS",
            "type": "n8n-nodes-base.awsSqs",
            "position": [
                1050,
                360
            ],
            "parameters": {
                "queue": "",
                "options": []
            },
            "credentials": {
                "aws": "AWS SQS Credentials"
            },
            "typeVersion": 1,
            "id": "457c8fae-9cc6-46f8-8aaf-d7eeb9cb97b0"
        },
        {
            "name": "Set",
            "type": "n8n-nodes-base.set",
            "position": [
                850,
                360
            ],
            "parameters": {
                "values": {
                    "number": [
                        {
                            "name": "Latitude",
                            "value": "={{$node[\"HTTP Request\"].json[\"0\"][\"latitude\"]}}"
                        },
                        {
                            "name": "Longitude",
                            "value": "={{$node[\"HTTP Request\"].json[\"0\"][\"longitude\"]}}"
                        },
                        {
                            "name": "Timestamp",
                            "value": "={{$node[\"HTTP Request\"].json[\"0\"][\"timestamp\"]}}"
                        }
                    ],
                    "string": [
                        {
                            "name": "Name",
                            "value": "={{$node[\"HTTP Request\"].json[\"0\"][\"name\"]}}"
                        }
                    ]
                },
                "options": [],
                "keepOnlySet": true
            },
            "typeVersion": 1,
            "id": "7cb738c4-8e98-4be1-a013-41dd84a50b83"
        },
        {
            "name": "HTTP Request",
            "type": "n8n-nodes-base.httpRequest",
            "position": [
                650,
                360
            ],
            "parameters": {
                "url": "https://api.wheretheiss.at/v1/satellites/25544/positions",
                "options": [],
                "queryParametersUi": {
                    "parameter": [
                        {
                            "name": "timestamps",
                            "value": "={{Date.now();}}"
                        }
                    ]
                }
            },
            "typeVersion": 1,
            "id": "b5f4220b-eafb-4f06-bb96-eba35b324499"
        },
        {
            "name": "Cron",
            "type": "n8n-nodes-base.cron",
            "position": [
                450,
                360
            ],
            "parameters": {
                "triggerTimes": {
                    "item": [
                        {
                            "mode": "everyMinute"
                        }
                    ]
                }
            },
            "typeVersion": 1,
            "id": "896b7287-ddcf-4e6d-850b-2274eea0bafb"
        }
    ],
    "connections": {
        "Set": {
            "main": [
                [
                    {
                        "node": "AWS SQS",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "Cron": {
            "main": [
                [
                    {
                        "node": "HTTP Request",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "HTTP Request": {
            "main": [
                [
                    {
                        "node": "Set",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    },
    "n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n #automation #workflow
Quick Actions
More in n8n Workflows