---
title: "Prompts the user for authorization using HTTP Basic Auth."
url: "https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f/operations/get_hidden-basic-auth_user__passwd"
---

> Full API specification: https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f.md

# Prompts the user for authorization using HTTP Basic Auth.

`GET` `/hidden-basic-auth/{user}/{passwd}`

Operation ID: `get_hidden-basic-auth_user__passwd`

## Path parameters

- `user` (string, required)
- `passwd` (string, required)

## Responses

- `200` - Sucessful authentication.
- `404` - Unsuccessful authentication.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: httpbin.org
  version: 0.9.2
servers:
  - url: https://httpbin.org
paths:
  /hidden-basic-auth/{user}/{passwd}:
    get:
      parameters:
        - in: path
          name: user
          required: true
          schema:
            type: string
        - in: path
          name: passwd
          required: true
          schema:
            type: string
      responses:
        "200":
          description: Sucessful authentication.
        "404":
          description: Unsuccessful authentication.
      summary: Prompts the user for authorization using HTTP Basic Auth.
      tags:
        - Auth
      operationId: get_hidden-basic-auth_user__passwd
```
