For the complete documentation index, see llms.txt. This page is also available as Markdown.

Bypass Solution

The AWS Cognito bypass endpoint takes the website domain and the email you are signing in with and returns a JSON payload containing the cognitoAsfData token.

How the solution works

To bypass AWS Cognito:

  1. Send our endpoint the website domain and email.

  2. Parse the response and use it as cognitoAsfData.

Endpoint

GET https://cognito.takionapi.tech/generate

Generate cognitoAsfData

get

Returns the cognitoAsfData token for the given site and username. Send your session's User-Agent, Sec-Ch-Ua, and Accept-Language headers for a more accurate token. Attach the returned token to your Cognito login request as cognitoAsfData.

Authorizations
x-api-keystringRequired
Query parameters
websitestringRequired

The target website domain.

Example: ticketmaster.sg
usernamestringRequired

The username / email you are authenticating with.

Example: user@example.com
Responses
200

The token payload. On a bad request an error field is returned instead — check for error first.

application/json
or
get/generate

Last updated