SERP API Authentication

Nimble APIs uses Basic access authentication on every request. Use your Nimble Admin API credentials to generate a base64 encoded credential string before making requests. Your account manager will provide you with your credentials when your account is opened.

To generate a credential string, use the following syntax:

base64(username:password)

For example, for the username [email protected] and the password pass123, the following credential string would be generated: dXNlckBuaW1ibGV3YXkuY29tOnBhc3MxMjM=

This credential string is then applied to the header of every request in the following form:

curl --location --request POST 'https://api.webit.live/api/v1/realtime/serp' \
--header 'Authorization: Basic dXNlckBuaW1ibGV3YXkuY29tOnBhc3MxMjM=' \
--header 'Content-Type: application/json' \
--data-raw '{
    // add your parameters here
}'