Accessing Jibber AI (Rapid API) using Curl

You can access RapidAPI using Curl.

Here are the basic steps to get started:

  • Ensure you have signed up for a RapidAPI account and subscribed to the Jibber AI API. You will receive an API key that you will need to use to authenticate your requests
  • Once you have your API key, you can make requests to the API endpoint

Here's an example:

curl
curl -X POST https://jibber-analyzer.p.rapidapi.com/en/analyze \
   --header 'Content-Type: application/json' \
   --header 'X-RapidAPI-Host: jibber-analyzer.p.rapidapi.com' \
   --header 'X-RapidAPI-Key: your-rapid-api-key' \
   --data-binary @- << EOF
{
  "features": {
    "sentiment": true,
    "keyword": true,
    "pii": true,
    "entities": true,
    "summary": true
  },
  "text": "My name is Julia Peach and I live in Paris."
}
EOF

In the above example, replace your-rapid-api-key with your RapidAPI key.

For other languages, change the /en/ in the Uri to the language of choice: