# Password-Based Authentication

You can authenticate with the API using your username and password to access your own resources.

To obtain a token with your password, execute the following request:

```bash
curl -X POST 'https://{BADGES_DOMAIN}/o/token' -d "username=YOUREMAIL&password=YOURPASSWORD"
```

You’ll receive a document in response like the following:

```json
{
  "access_token": "YOURACCESSTOKEN",
  "token_type": "Bearer",
  "expires_in": 86400,
  "refresh_token": "YOURREFRESHTOKEN"
}
```

**Don’t have a password on your account?** In order to use the password-based grant, you need to set a password on your account. You might not have one already if you created your account via sign-in from an external identity provider, such as Facebook or Google. You can add a password once signed in from your Profile page. If you don’t yet have an account, sign up [here](https://badges.parchment.com/signup). You will need a verified email address to access the following APIs, so make sure to complete that step.


---

# 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://developerdocs.instructure.com/services/parchment-digital-badges/authentication/password-based-authentication.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.
