Radar Chart

FREEMIUM
By Vikas Vimal | Updated a month ago | Tools
Popularity

7.7 / 10

Latency

2,505ms

Service Level

100%

Health Check

N/A

README

Documentation

Overview

The Radar Chart API allows you to create fully customizable radar charts. With a simple POST request, you can generate a radar chart and receive a URL for the generated image.

Base URL

https://radar-chart.p.rapidapi.com

Authentication

Use your RapidAPI key for authentication.

Add the following headers to your request:

X-RapidAPI-Key: Your RapidAPI Key
X-RapidAPI-Host: radar-chart.p.rapidapi.com
Endpoint: Generate Radar Chart
Path: /vv90-cfs1
Method: POST
Content-Type: application/json

Parameters

  • labels: Array of strings. Represents the axes of the radar chart.
  • datasets: Array of objects. Each object should have name, values, and color.
  • uniqueID: A unique identifier for the chart.
  • chartName: The name of the chart (optional).

Example Request

POST /vv90-cfs1 HTTP/1.1
Content-Type: application/json
X-RapidAPI-Key: [Your RapidAPI Key]
X-RapidAPI-Host: radar-chart.p.rapidapi.com
Host: radar-chart.p.rapidapi.com

{
    "labels": ["Axis1", "Axis2"],
    "datasets": [
        {
            "name": "Dataset1",
            "values": [0.8, 0.4],
            "color": "#FF5733"
        }
    ],
    "uniqueID": "chart123",
    "chartName": "MyChart"
}

Response

A successful response will return a JSON object with the uniqueID and a url to the generated radar chart image.

{
    "uniqueID": "chart123",
    "url": "https://storage.googleapis.com/vv90-cfs1/chart123.png"
}

Errors

  • 400 Bad Request: Missing or invalid parameters.
  • 500 Internal Server Error: An error occurred on our side.

For more information, feel free to contact us.

Followers: 1
Resources:
Product Website Terms of use
API Creator:
Rapid account: Vikas Vimal
Vikas Vimal
vikasvimal90
Log In to Rate API
Rating: 5 - Votes: 1