API Documentation

Everything you need to integrate cStudios — authentication, rate limits, error handling and the full endpoint reference.

Getting Started

Welcome to cStudios. Integrating takes three steps:

  1. Get your API key — message us on WhatsApp with the API you want to use and you'll receive a key, typically within a few hours. Every API includes a free Basic plan.
  2. Make your first call to any endpoint using the examples below. All requests are simple HTTPS GET calls.
  3. Handle the response — every API returns the same envelope: status, request_id, data and response_time_ms.

Base URL: https://api.cstudio.sbs

Authentication

All endpoints authenticate with an API key passed in the X-API-Key header. Keep keys server-side — never expose them in browsers or mobile apps.

Authenticated request
-string">"token-command">curl -X GET -string">"https://api.cstudio.sbs/v1/upi/verify?upi_id=name@okhdfcbank" \
  -H -string">"X-API-Key: YOUR_API_KEY"

Rate Limits

Each API has its own Basic (free), Pro, Ultra and Mega plan with a monthly request quota — see Pricing for per-API quotas. Rate limits are applied per API key:

PlanMonthly QuotaRate Limit
Basic (Free)1–20 requests (varies by API)1000 requests / hour
ProPer API planUncapped
UltraPer API planUncapped
MegaBundle or pay-per-useUncapped

Response headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset

Error Codes

Errors use conventional HTTP status codes with a consistent JSON body:

Error envelope
{
  "status": "error",
  "request_id": "req_1a2b3c4d",
  "error": {
    "code": 401,
    "message": "Invalid or missing API key"
  }
}
CodeMeaning
200Success — data returned in the data object.
400Bad Request — missing or malformed parameter.
401Unauthorized — invalid or missing API key.
402Payment Required — quota exhausted, upgrade your plan.
404Not Found — no record exists for the given input.
429Rate Limited — slow down, see X-RateLimit-Reset header.
500Server Error — retry with exponential backoff.
503Upstream Unavailable — source temporarily down, retry shortly.

Endpoint Reference

Automotive Vehicle Database & Specs

Full page →

82 car brand logos CDN, 1,420 models, 12,908 technical specs & autocomplete search.

GET https://api.cstudio.sbs/api/models/search

Query Parameters

q string, required
e.g. Thar

Example

GET /api/models/search?q=Thar

Motorcycles, Scooters & EV 2-Wheelers

Full page →

59 bike brand logos CDN, 1,503 models, 1,338 hosted photos & EV 2-wheeler filters.

GET https://api.cstudio.sbs/api/models/search

Query Parameters

q string, required
e.g. Splendor

Example

GET /api/models/search?q=Splendor

Vehicle RC to Mobile Number

Full page →

Lookup registered vehicle owner contact and mobile number from RC.

GET https://api.cstudio.sbs/v1/vehicle/rc-to-mobile

Query Parameters

vehicle_number string, required
e.g. MH12AB1234

Example

GET /v1/vehicle/rc-to-mobile?vehicle_number=MH12AB1234

India FASTag & Vehicle Owner

Full page →

Check FASTag status, issuing bank & owner details by RC number.

GET https://api.cstudio.sbs/v1/vehicle/fastag

Query Parameters

vehicle_number string, required
e.g. DL10CE1234

Example

GET /v1/vehicle/fastag?vehicle_number=DL10CE1234

Number to All UPI

Full page →

Discover every active UPI ID linked to an Indian mobile number.

GET https://api.cstudio.sbs/v1/upi/lookup-by-number

Query Parameters

mobile_number string, required
e.g. 9876543210

Example

GET /v1/upi/lookup-by-number?mobile_number=9876543210

Validate any UPI VPA & fetch account holder details instantly.

GET https://api.cstudio.sbs/v1/upi/verify

Query Parameters

upi_id string, required
e.g. rahul.s@okhdfcbank

Example

GET /v1/upi/verify?upi_id=rahul.s@okhdfcbank

RTO Vehicle Info

Full page →

Complete RTO registration data — owner, insurance, fitness & more.

GET https://api.cstudio.sbs/v1/rto/vehicle-info

Query Parameters

vehicle_number string, required
e.g. KL07AB1234

Example

GET /v1/rto/vehicle-info?vehicle_number=KL07AB1234

Vehicle Details PRO

Full page →

Enterprise-grade RC verification with full owner, insurance & finance data.

GET https://api.cstudio.sbs/v1/vehicle/details-pro

Query Parameters

vehicle_number string, required
e.g. MH12AB1234

Example

GET /v1/vehicle/details-pro?vehicle_number=MH12AB1234

RTO Vehicle Details

Full page →

Fetch RC address & registration details by vehicle number.

GET https://api.cstudio.sbs/v1/rto/vehicle-details

Query Parameters

vehicle_number string, required
e.g. MH01AB1234

Example

GET /v1/rto/vehicle-details?vehicle_number=MH01AB1234

Email Info

Full page →

Email intelligence — domain info, breach history & validation.

GET https://api.cstudio.sbs/v1/email/info

Query Parameters

email string, required
e.g. example@gmail.com

Example

GET /v1/email/info?email=example@gmail.com

Pincode Info

Full page →

Post offices, city, state & geo data from any Indian pincode.

GET https://api.cstudio.sbs/v1/pincode/info

Query Parameters

pincode string, required
e.g. 682001

Example

GET /v1/pincode/info?pincode=682001

IFSC Info

Full page →

Bank branch details, MICR & payment support from any IFSC.

GET https://api.cstudio.sbs/v1/ifsc/info

Query Parameters

ifsc string, required
e.g. SBIN0000001

Example

GET /v1/ifsc/info?ifsc=SBIN0000001

GSTIN to PAN

Full page →

Extract PAN & all GST registrations from any GSTIN.

GET https://api.cstudio.sbs/v1/gstin/to-pan

Query Parameters

gstin string, required
e.g. 07AAAAA0000A1Z5

Example

GET /v1/gstin/to-pan?gstin=07AAAAA0000A1Z5

PAN to GSTIN

Full page →

Find every GST registration linked to an Indian PAN.

GET https://api.cstudio.sbs/v1/pan/to-gstin

Query Parameters

pan string, required
e.g. AAAAA0000A

Example

GET /v1/pan/to-gstin?pan=AAAAA0000A

Phone Number Info

Full page →

Carrier, region, state & tower details from any mobile number.

GET https://api.cstudio.sbs/v1/phone/info

Query Parameters

phone_number string, required
e.g. 9876543210

Example

GET /v1/phone/info?phone_number=9876543210

IMEI Device Info

Full page →

Brand, model, OS & full specs from any IMEI number.

GET https://api.cstudio.sbs/v1/imei/info

Query Parameters

imei string, required
e.g. 356938035643809

Example

GET /v1/imei/info?imei=356938035643809

RTO Challan Details

Full page →

Real-time traffic challans & violation history by vehicle number.

GET https://api.cstudio.sbs/v1/rto/challan

Query Parameters

vehicle_number string, required
e.g. UP32DM6789

Example

GET /v1/rto/challan?vehicle_number=UP32DM6789

Reddit Scraper Pro & Data Engine

Full page →

Real-time Reddit posts, comments trees, user karma, subreddit analytics & raw JSON.

GET https://api.cstudio.sbs/api/r/GTA6/hot

Query Parameters

limit string, required
e.g. 5

Example

GET /api/r/GTA6/hot?limit=5