---
page_source: https://docs.juspay.io/paytm-gateway-configuration/docs/express-checkout/get-wallet
page_title: Get Wallet
---

## API Version: default


# Get Wallet



Get the wallet details. You can also use this API to generate one-time use token for direct debit transactions. ## Endpoints:
- Production: https://api.juspay.in/wallets/{wallet_id}

## Request Type: 
GET

## Authorization:

#### Basic Auth:
Consists of two parts.

* Username: API Key obtained from Juspay dashboard
* Password: Empty string
- Value: Example:- Basic MUQ2QUxxxxxxxxxxxxU5QTIxQzNFNTQwNkFDMEZCOg==
- Tags: Base64 Encoded Username:Password, Mandatory
## Sample Code Snippets:
### Sample Request:

#### Request Code Snippet:

```request
curl -X GET https://api.juspay.in/wallets/$wallet_id \
-u your_api_key:
```

### Sample Response:

#### Response:
```json
{
  "id": "wlt_q23xzki3pazgtezo",
  "object": "wallet_account",
  "wallet": "MOBIKWIK",
  "token": "tok_winysteev9eftrwcv6me",
  "current_balance": 250,
  "linked": "true",
  "last_refreshed": "2016-08-02T08:07:52+0000"
}
```

## API Responses:
### 200:

#### id:
- Description: wlt_q23xzki3pazgtezo
- Tags: string

#### object:
- Description: wallet_account
- Tags: string

#### wallet:
- Description: MOBIKWIK
- Tags: string

#### token:
- Description: tok_winysteev9eftrwcv6me
- Tags: string

#### current_balance:
- Tags: integer

#### linked:
- Description: true
- Tags: string

#### last_refreshed:
- Description: 2016-08-02T08:07:52+0000
- Tags: string
### 400:

#### object:
- Description: {}
- Tags: object
