Cant find a Quote API

class App extends React.Component {
constructor(props) {
super(props);
this.state = {
quote: “”,
author: “”,
backgroundColors: [ ]
}
}

componentDidMount() {
this.getQuotes();
}

getQuotes = async () => {
try {

const loadQuotes = await fetch(https://programming-quotesapi.vercel.app/api/random);
const data = await loadQuotes.json();

console.log(data);
const {author, quote} = data;

const newQuote = data.quote;
const newAuthor = data.author;

console.log(newQuote);

this.setState({
quote: newQuote,
author: newAuthor


})

} catch (err) {
console.log(err)
}
};

render() {
return (

{this.state.quote}
{this.state.author}

<a href={`https://twitter.com/intent/tweet?text=${encodeURIComponent(`“${this.state.quote}” — ${this.state.author}`)}`}  target=“\_blank”>

New Quote


)
}
}

const rootElement = document.getElementById(‘quote-box’);

const root = ReactDOM.createRoot(rootElement);

root.render(
<React.StrictMode>

</React.StrictMode>
);

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

I believe I have my base code set up and ready to display my quotes/authors, but i’m unable to find a working link to fetch the quotes.

Nevermind i solved it