Project Icon

truecallerjs

跨平台电话号码信息检索库

TruecallerJS 是一个开源库,用于检索电话号码的详细信息。该库简化了 Truecaller API 的使用,提供简洁的接口获取和处理号码数据。支持 Node.js、JavaScript 和 TypeScript,具备单个和批量号码查询功能。适用于开发各类电话号码相关应用。

TruecallerJS

NPM version GIT Stars Download GitHub Sponsors LICENSE Maintenance Issues

Welcome to TruecallerJS! This is a library for retrieving phone number details using the Truecaller API. It provides a simple and convenient way to access information about phone numbers in your Node.js, JavaScript, and TypeScript projects.

Description

TruecallerJS is built to simplify the process of fetching phone number details. With this library, you can easily integrate Truecaller functionality into your Node.js, JavaScript, and TypeScript applications. It abstracts the complexities of interacting with the Truecaller API and provides a streamlined interface for fetching and processing phone number information.

Features

  • Phone Number Lookup: Retrieve detailed information about a phone number, including the owner's name, location, and more.

  • Support for Node.js, JavaScript, and TypeScript: TruecallerJS can be used in Node.js projects, as well as in JavaScript and TypeScript applications.

  • Simple and Lightweight: TruecallerJS is designed to be easy to use and lightweight.

Table of Contents

Installation

You can install TruecallerJS using npm:

npm install truecallerjs

To use TruecallerJS from the command line

npm install -g truecallerjs

Note: If you are using a version of truecallerjs that is older than 1.1.2, we recommend referring to the truecallerjs-v1.1.2 documentation for instructions. Note: If you are using truecallerjs version from 1.1.3 to 1.1.5, please refer to the truecallerjs-v1.1.5 documentation for instructions.

Command Line Usage

To use TruecallerJS from the command line, you can run the truecallerjs command followed by the desired options and arguments.

Here are some examples of the available options:

  • truecallerjs login: Use this command to log in to your Truecaller account.

  • truecallerjs -s [number]: Use this command to search for a phone number and retrieve the caller name and related information.

  • truecallerjs --bulksearch, --bs command is used to performing bulk number searches using the Truecaller service. It allows you to search for multiple phone numbers at once, making it convenient for processing large sets of phone numbers in a single request.

  • truecallerjs --bulksearch, --bs: Use this command to perform a bulk number search.

  • Additional options include --raw, --name, --email, --json, --xml, --yaml, --text, --nc, --installationid, --verbose, and --help.

For example:

~$ truecallerjs -s +9199123456789 --json
{
     ...
     "name":"Sumith Emmadi"
     ...
}

~$ truecallerjs -s +9199123456789 --name
Name : Sumith Emmadi

Example for bulk search

truecallerjs --bulksearch <phone_number_1>,<phone_number_2>,<phone_number_3>,...,<phone_number_n>

Replace <phone_number_1>, <phone_number_2>, ..., <phone_number_n> with the actual phone numbers you want to search. Separate each phone number with a comma.

 ~$ truecallerjs --bs 9912345678,+14051234567,+919987654321

Note : If the country code is not specified for a phone number, it will default to using your own country code.

Limitations

Please note the following limitations when using the --bulksearch option:

  1. Maximum Number of Phone Numbers: The tool supports searching 30 or fewer phone numbers at once in a single request. If you exceed this limit, you may need to split your input into multiple requests.

  2. Formatting: Ensure that the phone numbers are correctly formatted and do not contain any additional characters or spaces. The tool expects the phone numbers to be provided in a comma-separated format.

Usage

To use the project, start by installing the truecallerjs package via npm:

npm install truecallerjs

Simple Example

Here's a basic example of how to perform a normal search for a phone number:

import truecallerjs, { SearchData, Format } from "truecallerjs";

async function performTruecallerSearch(): Promise<void> {
  const searchData: SearchData = {
    number: "9912345678",
    countryCode: "IN",
    installationId: "a1k07--Vgdfyvv_rftf5uuudhuhnkljyvvtfftjuhbuijbhug",
  };

  try {
    const response: Format = await truecallerjs.search(searchData);
    console.log(response.json());

    // Additional response methods:
    // console.log(response.xml());
    // console.log(response.yaml());
    // console.log(response.text());

    // Example of available data from the response:
    console.log(response.getName()); // "Sumith Emmadi"
    console.log(response.getAlternateName()); // "sumith"
    console.log(response.getAddresses()); // {....}
    console.log(response.getEmailId()); // example@domain.com
    console.log(response.getCountryDetails()); // {...}
  } catch (error) {
    console.error("Error occurred:", error);
  }
}

performTruecallerSearch();

In the above example, the truecallerjs package is used to search for a phone number. The search_data object contains the necessary parameters, including the number, country code, and installation ID. The response from the truecallerjs.search() function provides various methods to access the returned data.

Note : Make sure to log in using the truecallerjs login command and obtain your installation ID using the truecallerjs -i command.

Bulk Search on Multiple Phone Numbers

The truecallerjs package also supports bulk search on multiple phone numbers:

import truecallerjs, { BulkSearchData, Format } from "truecallerjs";

async function performBulkTruecallerSearch(): Promise<void> {
  const countryCode: string = "IN";
  const installationId: string = "a1k07--Vgdfyvv_rftf5uuudhuhnkljyvvtfftjuhbuijbhug";
  const phoneNumbers: string = "+9912345678,+14051234567,+919987654321";

  try {
    const response: BulkSearchData = await truecallerjs.bulkSearch(phoneNumbers, countryCode, installationId);
    console.log(response);
  } catch (error) {
    console.error("Error occurred:", error);
  }
}

performBulkTruecallerSearch();

In this example, the truecallerjs.bulkSearch() function is used to perform bulk searches on multiple phone numbers. The phoneNumbers parameter should contain the phone numbers separated by commas. The countryCode and installationId parameters are used to specify the default country code and installation ID, respectively.

Note : Make sure to log in using the truecallerjs login command and obtain your installation ID using the truecallerjs -i command.

For more details and additional functionalities, please refer to the documentation, including the process for logging in and obtaining the installation ID.

Disclaimer

The truecallerjs tool is not an official Truecaller product. It is a custom script developed by Sumith Emmadi, and its functionality is dependent on the Truecaller service. Please use this tool responsibly and in compliance with the terms of service of Truecaller.

For more information and support, please contact Sumith Emmadi at sumithemmadi244@gmail.com .

Contributing

Contributions to the truecallerjs are not only welcome but highly encouraged!

  1. Fork this repository git clone https://github.com/sumithemmadi/truecallerjs.git
  2. Create a new branch for your contribution.
  3. Add your content in the appropriate folder or create a new file.
  4. Commit your changes and push them to your forked repository.
  5. Open a pull request, explaining the nature of your contribution.

Please note that all contributions should align with the spirit of the repository and be suitable for all audiences. Offensive or inappropriate content will not be accepted.

License

TruecallerJS is open source and licensed under the MIT License. See the LICENSE file for more information.

💝 Sponsor and support me

If you find my project helpful or inspiring, consider supporting me through GitHub Sponsors. Your sponsorship helps me dedicate more time and effort to open source development and creating impactful projects.

:heart: Sponsor me on github

Buy Me a Coffee at ko-fi.com

sumithemmadi

💖 Sponsors

Sponsors

  • I want to extend my sincere gratitude to all my sponsors for their generous support.

Acknowledgments

Thank you for choosing TruecallerJS! I hope it helps you retrieve phone number details efficiently.

Repository: https://github.com/sumithemmadi/truecallerjs.git

项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

白日梦AI

白日梦AI提供专注于AI视频生成的多样化功能,包括文生视频、动态画面和形象生成等,帮助用户快速上手,创造专业级内容。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

讯飞绘镜

讯飞绘镜是一个支持从创意到完整视频创作的智能平台,用户可以快速生成视频素材并创作独特的音乐视频和故事。平台提供多样化的主题和精选作品,帮助用户探索创意灵感。

Project Cover

讯飞文书

讯飞文书依托讯飞星火大模型,为文书写作者提供从素材筹备到稿件撰写及审稿的全程支持。通过录音智记和以稿写稿等功能,满足事务性工作的高频需求,帮助撰稿人节省精力,提高效率,优化工作与生活。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号