Devil API

BIHAR RTPS PDF

Base Endpoint URL

https://api.devilapi.online/service_api/v1/rtps/bihar_print.php

Parameters Payload

Parameter Type Required Description
api_key string REQUIRED enter_key
rtps_no number REQUIRED enter_rtps_no
name string REQUIRED enter_name

PHP Integration Code

curl_request.php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://api.devilapi.online/service_api/v1/rtps/bihar_print.php?api_key=&rtps_no=&name=',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 30,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'GET',
   CURLOPT_POSTFIELDS => {
    "api_key": "",
    "rtps_no": "",
    "name": ""
}
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
Example Response Payload
200 OK
{
    "status": "success",
    "message": "PDF fetched successfully",
    "fee": 2,
    "sms_sent": true,
    "data": {
        "rtps_no": "BRCCO\/2025\/27******",
        "name": "S****** K*****",
        "pdf": "data:application\/pdf;base64,JVBERi0xLjQKJ***************EOF"
    }
}
Bearer Token Authentication All API requests require active authentication tokens sent inside HTTP Bearer headers.