# Getting PayPal access token
To get a PayPal access token you have to make a new request using an API client like Postman (opens new window).
- Set the method to
POST
. - Set the URL to
https://api.sandbox.paypal.com/v1/oauth2/token
. - Open the
Authorization
tab and:- Select
Basic Auth
type. - Enter your PayPal Client ID into the
Username
field. - Enter your PayPal Client Secret into the
Password
field.
- Select
- Go to
Body
tab and selectx-www-form-urlencoded
radio button. Then, add one entry with the key:grant_type
and value:client_credentials
. - Click the
Send
button. - In the response, you can find your PayPal
access_token
.