My Files
API Playground
Test API endpoints interactively without writing code
Endpoints
Get your API key from Settings → Developer API → API Keys
Request
GET
/api/v1/filesParameters
Code Examples
typescript
import { WormHoleSDK } from '@wormhole/sdk';
const wormhole = new WormHoleSDK({
apiKey: 'YOUR_API_KEY',
});
const result = await wormhole.listfiles();python
from wormhole_sdk import WormHoleSDK wormhole = WormHoleSDK(api_key='YOUR_API_KEY') result = wormhole.list_files()
curl
curl -X GET '/api/v1/files' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json'