{"id":36656403,"url":"https://github.com/interzoid/typescript-examples","last_synced_at":"2026-01-12T10:19:49.993Z","repository":{"id":196214125,"uuid":"405219293","full_name":"interzoid/TypeScript-Examples","owner":"interzoid","description":"Provides TypeScript examples for consuming several of the Cloud APIs available from Interzoid, including company name matching, individual name matching, weather, page performance, email validation, currency rates/FOREX, and global telephone information.","archived":false,"fork":false,"pushed_at":"2021-12-06T19:26:05.000Z","size":603,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-01-26T09:18:03.841Z","etag":null,"topics":["angular","api","cloud","data","database","matching","nodejs","quality","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/interzoid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-09-10T21:40:48.000Z","updated_at":"2021-12-06T19:32:11.000Z","dependencies_parsed_at":"2023-09-23T10:25:25.361Z","dependency_job_id":null,"html_url":"https://github.com/interzoid/TypeScript-Examples","commit_stats":null,"previous_names":["interzoid/typescript-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/interzoid/TypeScript-Examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interzoid%2FTypeScript-Examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interzoid%2FTypeScript-Examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interzoid%2FTypeScript-Examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interzoid%2FTypeScript-Examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/interzoid","download_url":"https://codeload.github.com/interzoid/TypeScript-Examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interzoid%2FTypeScript-Examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","api","cloud","data","database","matching","nodejs","quality","typescript"],"created_at":"2026-01-12T10:19:45.838Z","updated_at":"2026-01-12T10:19:49.985Z","avatar_url":"https://github.com/interzoid.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TypeScript-Examples\nThese are code examples showing how to call and utilize Interzoid's various Cloud APIs using TypeScript. Interzoid's APIs provide real-time data in several categories for integration into Web sites, applications, and business processes. There are also data matching and data validation APIs that can significantly improve the value of your data assets.\n\nTo see this API in action via a Web application that quickly generates inconsistent/duplicate data reports while connected to major Cloud data platforms, visit here: https://connect.interzoid.com\n\nThe examples use the Axios module for HTTP requests. \n\nUse NPM to install Axios:\n\n```\n$ npm install Axios\n```\n\nTo test from the command line/shell, use 'tsc' to compile your .ts TypeScript file into JavaScript. You can then use Node (if installed) to test the results of your created Javascript file.\n\n```\n$ node YOURFILE.js\n```\n\n\n**GetCompanyMatchSimkey.ts** - generates a similarity key to use to match/locate other similar company names (\"IBM\" \u0026 \"International Business Machines\", etc.) - visit the API Page: https://www.interzoid.com/services/getcompanymatchadvanced  \n\n![CompanyMatch](images/CompanyMatchSimKeys.PNG)\n\n**GetFullNameMatchSimkey.ts** - generates a similarity key to use to match/locate other similar individual names (\"Thomas Johnson\" \u0026 \"Mr. Tom Johntsen\", etc.) - visit the API Page: https://www.interzoid.com/services/getfullnamematch \n\n![FullNameMatch](images/FullNameMatchSimKeys.PNG)\n\n**GetAddressMatchSimkey.ts** - generates a similarity key to use to match/locate other similar addresses (\"100 East Main Street\" \u0026 \"100 E Main St.\", etc.) - visit the API Page: https://www.interzoid.com/services/getaddressmatchadvanced\n\n![AddressMatch](images/AddressMatchSimKeys.PNG)\n\n**GetCurrencyRate.ts** - Retrieves a real-time currency rate for 150+ global currencies - visit the API Page: https://www.interzoid.com/services/getcurrencyrate \n\n![CurrencyRate](images/CurrencyRate.PNG)\n\n**GetCryptoPrice.ts** - Retrieves a real-time cryptocurrency price (BTC, ETH, ADA, BNB, etc.) - visit the API Page: https://www.interzoid.com/services/getcryptoprice \n\n![CryptoPrice](images/CryptoPrices.PNG)\n\n**GetEmailInformation.ts** - Retrieves email validity and several other data points for a given email address - visit the API Page: https://www.interzoid.com/services/getemailinfo \n\n![EmailInformation](images/EmailInformation.PNG)\n\n**GetGlobalNumberInformation.ts** - Retrieves geographic information, mobile, language and other demographics for a global telephone number - visit the API Page: https://www.interzoid.com/services/getglobalnumberinfo\n\n![GlobalPhone](images/GlobalPhone.PNG)\n\n**GetPagePerformance.ts** - Measures page load times or API call performance from 20+ global locations - visit the API Page: https://www.interzoid.com/services/globalpageload \n\n![GlobalPageLoad](images/GlobalPageLoad.PNG)\n\n**GetWeatherFromZip.ts** - Retrieves temperature and other information about current weather conditions for a zip code - visit the API Page: https://www.interzoid.com/services/getweatherzip\n\n![Weather](images/Weather.PNG)\n\nTo register for your free **API Key** (a block of free API credits), visit here: https://www.interzoid.com/register  \n  \n  \nThese APIs can also be called in batch mode retrieving input data and writing results from/to databases such as Postgres, MySQL, MariaDB, Snowflake, AWS Aurora, SQL Server, Access, .CSV files, etc. (native/odbc \u0026 local or Cloud). For more info visit here: https://www.interzoid.com/connect\n\ncontact support@interzoid.com with any questions or feedback  \n\nWebsite: www.interzoid.com  \n\nTwitter: @Interzoid\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finterzoid%2Ftypescript-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finterzoid%2Ftypescript-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finterzoid%2Ftypescript-examples/lists"}