dump.ssh.ninja

/generate

Generate a new API key. Use this endpoint to create an API key that can be used for further actions like dumping or viewing logs.

Example Request:

GET /generate

Response:

{ "api_key": "generated-api-key" }

/view?key={key}

View the logs associated with a specific API key. Use the API key generated from the /generate endpoint.

Example Request:

GET /view?key={your-api-key}

Response:

{ "api_key": "{your-api-key}", "events": ["Event 1", "Event 2"] }

/dump?key={key}

Log an event for a specific API key. This will append an event to the logs of the API key.

Example Request:

ANY /dump?key={your-api-key}

Response:

{ "message": "Event stored.", "api_key": "{your-api-key}" }