get__node
GET /node
List Nodes
Get all available Flashback nodes.
TypeScript Client Library
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({
accessToken: 'your-access-token'
});
// Get all available nodes
try {
const result = await client.nodes.list();
console.log('Available nodes:', result);
} catch (error) {
console.error('Failed to retrieve nodes:', error);
}
Code Samples
# You can also use wget
curl -X GET https://backend.flashback.tech/node \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
Example responses
200 Response
[
{
"url": "string",
"ip": "string",
"region": "string",
"version": "string",
"status": "string",
"lastUpdated": "2019-08-24T14:15:22Z"
}
]
Responses
Status
Meaning
Description
Schema
Response Schema
Status Code 200
Name
Type
Required
Restrictions
Description
» url
string
false
none
none
» ip
string
false
none
none
» region
string
false
none
none
» version
string
false
none
none
» status
string
false
none
none
» lastUpdated
string(date-time)
false
none
none
Last updated
Was this helpful?