It's great that you are exploring Mulesoft. Good luck.
as per your question that you are new and want to create a new Mulesoft project. so I would like that you first got through this article https://dzone.com/articles/Step-by-step-guide-to-using-mule-esb that is written by me and will guide you set up and get ready for your first mule project.
after going through completely this article then create a new project new Project in Anypoint Studio
click on file-> create a new mule project as shown in the below screenshot

now give your project name and select mule runtime, in my system I had only 4.3 so it is showing that otherwise, you can select by your choice (to install more runtime is another question)

- now you will get your API with your pom file that will have all related dependencies. there you can add any dependency according to your requirement.

note: After all maven configuration check that at location C:\Users\yourPCName\.m2 one folder will create, that contains one more folder named repository second one file need to create settings.xml that we will use if Access MuleSoft Enterprise Repository (for example need to access nexus Artifactory.
for example, attached below a sample of settings.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?><settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<servers>
<server>
<id>id</id>
<username>username</username>
<password>password</password>
</server>
<server>
<id>mulesoft-release-local</id>
<username>username</username>
<password>password</password>
</server>
</servers>
<mirrors>
<mirror>
<id>id</id>
<mirrorOf>*</mirrorOf>
<name>name</name>
<url>URL of artifactory</url>
</mirror>
</mirrors>
</settings>
I hope this answer will help you.
Thanks