Basic Instructions πŸ‘‹

Learn what the basic requirements are for all twitter requests.

Different Ratelimits

For public requests, you are not required to pass any tokens or proxies. Your plan allows you a specific rate limit for requests where you don't use your own authentication.

For the requests where Auth is required or if you wish to get a higher rate limit and want to use them for public requests, you will need the following.

Required Tokens

  1. Auth Token

You can find the auth token in your twitter cookies, just like in this image:

  1. Ct0 Token

You can find the ct0 token in your twitter cookies, just like in this image:

  1. User-Agent

You can find your User Agent in any request headers, just like in this image:

  1. Proxy

Any HTTP proxy is supported. Please send in this format:

http://{user}:{pass}@{host}:{port}

Example

As mentioned, you have to use those in any auth required endpoint or optionally also in public ones. Here is an example on how to include them:

POST https://api.noauth.cc/twitter/favorite-tweet

Example on how to use Twitter tokens.

Headers

NameTypeDescription

x-api-key*

String

NoAuth API Key

Request Body

NameTypeDescription

auth_token*

String

Twitter Auth

ct0_token*

String

Twitter Auth

user_agent*

String

Twitter Auth

proxy*

String

Example: http://user:pass@host:port

tweet_id*

Integer

Example: 52562566

{
  "status": "success",
  "message": "Twitter response.."
}

Last updated