Create Account

Warning Deprecated, use RapidAPI to access FeedPulse

Create an account through the /account/new endpoint

curl --location --request POST 'http://api.feedpulse.com/account/new' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{"username": "testuser", "email": "test@mail.com"}'

Parameters

  • username String Required
  • email String Required

Response

The response is a json object containing user object, and an api key. Store the api key securely.

{
    "message":"account registered successfully",
    "user_details":{
        "username":"testuser",
        "email":"test@mail.com",
        "api_key":"secret-api-key"}
}

Confirm Email

Your’ll receive a confirmation email to activate your account


Table of contents