> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # some-operation # Package: oauth-2 # Method link: https://dev.wix.com/docs/api-reference/app-management/oauth-2/token-info.md ## Permission Scopes: undefined ## Introduction Retrieves information about a specific access token. Access tokens are specific to a subject and a client. A client (app) creates and issues an access token to a subject. The client may request a valid token from a subject to perform a certain action, such as an API call. This endpoint works with both OAuth and custom authentication tokens. --- ## REST API ### Examples ### Create a custom authentication refresh and access token. ```curl curl -X POST \ 'https://www.wixapis.com/oauth/access' \ -H 'Content-Type: application/json' \ -d '{ "grant_type": "authorization_code", "client_id": "", "client_secret": "", "code": "" }' ``` ---