Skip to main content
GET
/
.well-known
/
apple-app-site-association
cURL
curl --request GET \
  --url https://{projectId}.frontendapi.corbado.io/.well-known/apple-app-site-association \
  --header 'Authorization: Bearer <token>'
{
  "applinks": {
    "details": [
      {
        "appID": "<string>",
        "paths": [
          "<string>"
        ]
      }
    ]
  },
  "webcredentials": {
    "apps": [
      "<string>"
    ]
  },
  "appclips": {
    "apps": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

After a user logs in successfully, a session is created and a JWT token is returned. This token represents the user's authenticated session. It must be included in the Authorization header as a Bearer token for all protected endpoints:

Authorization: Bearer <your-token>

The server will validate this token to authorize access.

Response

Provides a list of site association

webcredentials
object
required
appclips
object
required