# Request For Private Key API

This Request allows users to get an email two-factor code for getting their own private key.

### Request For Private Key API

<mark style="color:blue;">`GET`</mark> `https://api.stagemeta.dev/metamask/request/private-key`

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
  "id": 1,
  "createdAt": "2023-04-09T07:32:30.207Z",
  "updatedAt": "2023-04-15T17:38:33.396Z",
  "deletedAt": null,
  "email": "john@doe.com",
  "username": "johndoe",
  "image": null,
  "walletAddress": "0x8******************bd290",
  "receiveEmail": true,
  "canGetDeltaEnergy": false,
  "emailVerify": true,
  "emailVerificationCodeExpireTime": "2023-04-19T17:38:33.392Z",
  "access": [],
  "stripeCustomerId": "***",
  "totalEnergyReceived": 0,
  "totalPings": 0,
  "isStageWallet": true
}
```

{% endtab %}

{% tab title="500: Internal Server Error There was an error in preparing the plaque. Please contact Stagemeta support." %}

{% endtab %}

{% tab title="401: Unauthorized The access token provided in the Authorization header is invalid." %}

{% endtab %}

{% tab title="404: Not Found The plaque specified in the endpoint does not exist" %}

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'GET' \
  'https://api.stagemeta.dev/metamask/request/private-key' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MzE4LCJpYXQiOjE2ODE1NzkzODN9.IVwG13FW0sF8XicJJh8W7yMOxKp5Zhsyazju1qVLI04'
```

{% endtab %}

{% tab title="Node" %}
{% code overflow="wrap" %}

```javascript
fetch('https://api.stagemeta.dev/metamask/request/private-key', {
  method: 'GET',
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));
```

{% endcode %}
{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.stagemeta.world/reference/api-reference/request-for-private-key-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
