Account Information
Retrieve current user account information.
GET/users/me
Body Parameters
Security
Authorization
stringrequiredJWT Bearer token
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
const response = await fetch('https://api.pinguproxy.com/users/me', {headers: {'Authorization': 'Bearer your-jwt-token'}});const user = await response.json();console.log(user);
Response
{"uuid": "123e4567-e89b-12d3-a456-426614174000","username": "john.doe","creation_date": "2023-01-01T00:00:00Z","creation_ip": "192.168.1.1","name": "John","surname": "Doe","address": "123 Main St","access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."}