Password-Api

What Is Password-Api?

It's A Simple Password API Developed By Me!
It Generates Random Password That You Can Use!
It Can Generate Password Upto 10000 Characters Long!

Api URL?

Api Original URL: https://password-api.sanchogodinho.repl.co/

Api Methods?

GET

Api Usage :-

Python

from urllib import request
import json

data=request.urlopen("https://password-api.sanchogodinho.repl.co/lengthOfPassword")
data=json.loads(data.read())
if ('error' in data):
    print(data["error"])
else:
    password=data["password"]
    print(password)

HTML

<script>
    fetch('https://password-api.sanchogodinho.repl.co/lengthOfPassword').then(res => res.json()).then(data => {
        if ('error' in data){
            console.log(data.error)
        }
        else{
            password = data.password;
            console.log(password);
        }
    });
</script>

Node JS

Terminal :-

npm i axios

Node JS Code :-

const axios = require('axios');

const data = axios.get('https://password-api.sanchogodinho.repl.co/lengthOfPassword').then(data => {
    if ('error' in data.data){
        console.log(data.data.error);
    }
    else{
        password = data.data.password;
        console.log(password);
    }
});

Note: The lengthOfPassword Should Be Replaced With A Number That You Choose The Length Of The Password.