# Authorization Scopes

Guide to authenticating requests when using the Font Awesome GraphQL API.

> Access GraphQL data that requires authorization with an access token.

Some fields in the GraphQL schema require an authorization scope to be associated with the access token, a JWT generated by the [Token Endpoint](/apis/graphql/token-endpoint.md), used for making the request. The access token's scopes are determined by the scopes on the API token used.

Currently, the only API tokens that can be generated by Font Awesome account holders from the [account](https://fontawesome.com/account#api-tokens) page have the scopes `public` and `kits_read`. <a class="link link-underline-dark primary6 fw6" href="mailto:hello@fontawesome.com?subject=I have an API question, Font Awesome!">Contact Support</a> if you have a use case that requires accessing fields with other authorization scopes.

## Scopes

| Scope                            | Description                                                                                                                                                                                      | Access                                                                                                                                                         |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <nobr>`public`</nobr>            | default scope, granted automatically to requests that lack an `Authorization` header                                                                                                             | Free                                                                                                                                                           |
| <nobr>`kits_read`</nobr>         | required for read-only access of kit configuration metadata for the kits on an account                                                                                                           | [Pro only](https://fontawesome.com/plans)                                                                                                                      |
| <nobr>`kits_download`</nobr>     | required for downloading a kit                                                                                                                                                                   | [Pro only](https://fontawesome.com/plans)                                                                                                                      |
| <nobr>`profile_read`</nobr>      | required for read-only access to personally identifiable information on an account, such as `email`                                                                                              | <nobr><a class="link link-underline-dark primary6 fw6" href="mailto:hello@fontawesome.com?subject=I have an API question, Font Awesome!">Contact us</a></nobr> |
| <nobr>`domains_read`</nobr>      | required for read-only access to domains whitelisted for the Pro CDN for a given account                                                                                                         | <nobr><a class="link link-underline-dark primary6 fw6" href="mailto:hello@fontawesome.com?subject=I have an API question, Font Awesome!">Contact us</a></nobr> |
| <nobr>`entitlements_read`</nobr> | required for read-only access to the features or capabilities available on the account, such as which [Icon Collection](/apis/graphql/objects.md#iconcollection) the account has permission to use | Free                                                                                                                                                           |
| <nobr>`svg_icons_pro`</nobr>     | required for read-only access to SVG icon data in Pro-only familyStyles <br/> This scope also provides access to any SVGs for Font Awesome Free icons.                                           | [Pro only](https://fontawesome.com/plans)                                                                                                                      |
| <nobr>`svg_icons_free`</nobr>    | required for read-only access to SVG icon data in Font Awesome Free familyStyles                                                                                                                 | Free                                                                                                                                                           |
