1---
2layout: "api"
3page_title: "/sys/wrapping/lookup - HTTP API"
4sidebar_title: "<code>/sys/wrapping/lookup</code>"
5sidebar_current: "api-http-system-wrapping-lookup"
6description: |-
7  The `/sys/wrapping/lookup` endpoint returns wrapping token properties.
8---
9
10# `/sys/wrapping/lookup`
11
12The `/sys/wrapping/lookup` endpoint returns wrapping token properties.
13
14## Wrapping Lookup
15
16This endpoint looks up wrapping properties for the given token.
17
18| Method   | Path                         |
19| :--------------------------- | :--------------------- |
20| `POST`   | `/sys/wrapping/lookup`       |
21
22### Parameters
23
24- `token` `(string: <required>)` – Specifies the wrapping token ID.
25
26### Sample Payload
27
28```json
29{
30  "token": "abcd1234"
31}
32```
33
34### Sample Request
35
36```
37$ curl \
38    --header "X-Vault-Token: ..." \
39    --request POST \
40    --data @payload.json \
41    http://127.0.0.1:8200/v1/sys/wrapping/lookup
42```
43
44### Sample Response
45
46```json
47{
48  "request_id": "481320f5-fdf8-885d-8050-65fa767fd19b",
49  "lease_id": "",
50  "lease_duration": 0,
51  "renewable": false,
52  "data": {
53    "creation_path": "sys/wrapping/wrap",
54    "creation_time": "2016-09-28T14:16:13.07103516-04:00",
55    "creation_ttl": 300
56  },
57  "wrap_info": null,
58  "warnings": null,
59  "auth": null
60}
61```
62