<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: carrierone</title>
    <description>The latest articles on DEV Community by carrierone (@carrierone).</description>
    <link>https://dev.to/carrierone</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3829793%2F9f34d373-d134-4f70-b9ab-d18edc673645.jpeg</url>
      <title>DEV Community: carrierone</title>
      <link>https://dev.to/carrierone</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/carrierone"/>
    <language>en</language>
    <item>
      <title>USPTO Patent and Trademark Data via REST API</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 04 Sep 2026 19:01:15 +0000</pubDate>
      <link>https://dev.to/carrierone/uspto-patent-and-trademark-data-via-rest-api-pp8</link>
      <guid>https://dev.to/carrierone/uspto-patent-and-trademark-data-via-rest-api-pp8</guid>
      <description>&lt;h2&gt;
  
  
  USPTO Patent and Trademark Data via REST API for Developers
&lt;/h2&gt;

&lt;p&gt;If you're developing a patent search tool, IP analytics platform, or a system for trademark monitoring, accessing data from the United States Patent and Trademark Office (USPTO) can be invaluable. The USPTO provides access to its vast database of patents through an API endpoint at &lt;code&gt;api.verilexdata.com/api/v1/patents/sample&lt;/code&gt;. This article will guide you on how to search for patents using this API, covering the basics of what it offers and providing a small Python example.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Accessing USPTO Patent Data
&lt;/h3&gt;

&lt;p&gt;The USPTO grants over 600,000 patents each year. As an engineer building a tool that needs to integrate with these data, you might want to filter or search for specific patents based on keywords, inventors, assignees, or other criteria. The REST API allows developers like yourself to do just that.&lt;/p&gt;

&lt;h3&gt;
  
  
  Solution: A Simple Python Example
&lt;/h3&gt;

&lt;p&gt;Here’s a simple example of how to use the &lt;code&gt;api.verilexdata.com/api/v1/patents/sample&lt;/code&gt; endpoint in Python to search for patents by keyword:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

def fetch_patent_data(keyword):
    url = "https://api.verilexdata.com/api/v1/patents/sample"
    headers = {
        'Accept': '
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Querying Federal Court Records (PACER) Programmatically</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 01 Sep 2026 19:01:16 +0000</pubDate>
      <link>https://dev.to/carrierone/querying-federal-court-records-pacer-programmatically-3689</link>
      <guid>https://dev.to/carrierone/querying-federal-court-records-pacer-programmatically-3689</guid>
      <description>&lt;h2&gt;
  
  
  Querying Federal Court Records (PACER) Programmatically
&lt;/h2&gt;

&lt;p&gt;If you're working on a legaltech project that requires access to federal court records, you might find yourself needing to programmatically query the PACER system. The Public Access to Court Electronic Records (Pacer) is an online database provided by the United States Courts, offering electronic access to case filings from most federal district and appeals courts.&lt;/p&gt;

&lt;h3&gt;
  
  
  A Simple Python Code Example
&lt;/h3&gt;

&lt;p&gt;Here's a quick example of how you can use Python to fetch documents from the PACER using their API. The code below uses &lt;code&gt;requests&lt;/code&gt; library to make HTTP requests:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;get_case_documents&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pacer_case_id&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
    &lt;span class="c1"&gt;# Replace with your own Pacer account information
&lt;/span&gt;    &lt;span class="n"&gt;api_key&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;YOUR_API_KEY&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;

    &lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.pacerlaw.com/v2/documents/&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;pacer_case_id&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
    &lt;span class="n"&gt;headers&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Authorization&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Bearer &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;api_key&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Accept&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;application/json&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;

    &lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;raise&lt;/span&gt; &lt;span class="nc"&gt;Exception&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Error: &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s"&gt; - &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Example usage
&lt;/span&gt;&lt;span class="n"&gt;case_id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;12345&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="n"&gt;documents&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;get_case_documents&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;case_id&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;documents&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>OFAC Sanctions Screening for Developers: How to Check Addresses and Names</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 28 Aug 2026 19:01:39 +0000</pubDate>
      <link>https://dev.to/carrierone/ofac-sanctions-screening-for-developers-how-to-check-addresses-and-names-5dij</link>
      <guid>https://dev.to/carrierone/ofac-sanctions-screening-for-developers-how-to-check-addresses-and-names-5dij</guid>
      <description>&lt;h2&gt;
  
  
  OFAC Sanctions Screening for Developers: How to Check Addresses and Names
&lt;/h2&gt;

&lt;p&gt;When building KYC/AML compliance systems, financial technology applications, or any project that involves cryptocurrency wallets, understanding how to check addresses against the US Treasury’s Office of Foreign Assets Control (OFAC) SDN list is crucial. This list contains individuals and entities subject to US sanctions. Checking these entries can help prevent your projects from inadvertently facilitating transactions with prohibited parties.&lt;/p&gt;

&lt;p&gt;Here's a quick Python script example demonstrating how you might integrate OFAC sanctions screening into your application:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;check_sanctions&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;screen_name&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
    &lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.verilexdata.com/api/v1/sanctions/stats?name=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;screen_name&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
    &lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt; &lt;span class="o"&gt;!=&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="bp"&gt;None&lt;/span&gt;

    &lt;span class="n"&gt;data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;data&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;isSDN&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;

&lt;span class="c1"&gt;# Example usage
&lt;/span&gt;&lt;span class="n"&gt;address_or_screen_name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;example_address&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="nf"&gt;check_sanctions&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;address_or_screen_name&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
    &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;The address &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;address_or_screen_name&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s"&gt; is on the OFAC SDN list.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;The address &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;address_or_screen_name&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s"&gt; is not on the OFAC SDN list.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Accessing OFAC Data via API
&lt;/h2&gt;

&lt;p&gt;For more comprehensive and frequent checks, you can use our API endpoint at `&lt;a href="https://api.verile" rel="noopener noreferrer"&gt;https://api.verile&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Getting SEC EDGAR Filings via API Without Scraping</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 25 Aug 2026 19:01:25 +0000</pubDate>
      <link>https://dev.to/carrierone/getting-sec-edgar-filings-via-api-without-scraping-38f5</link>
      <guid>https://dev.to/carrierone/getting-sec-edgar-filings-via-api-without-scraping-38f5</guid>
      <description>&lt;h2&gt;
  
  
  Getting SEC EDGAR Filings via API Without Scraping
&lt;/h2&gt;

&lt;p&gt;When working on financial applications that require real-time access to SEC filings such as 10-K and 10-Q documents, you might be tempted to scrape data from the SEC's EDGAR system. However, this approach can be cumbersome and may not always provide up-to-date information due to delays in updates.&lt;/p&gt;

&lt;p&gt;A more practical solution is to use an API that provides these filings directly. One such API endpoint is &lt;code&gt;api.verilexdata.com/api/v1/sec/sample&lt;/code&gt;. This service claims to update its data every 15 minutes, allowing you to search by company or form type and receiving real-time updates without the need for manual scraping.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example Python Code
&lt;/h3&gt;

&lt;p&gt;Here’s a simple example of how you can use this API in a Python script:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

def get_sec_filings(company_name=None, form_type='10-K'):
    url = 'https://api.verilexdata.com/api/v1/sec/sample'

    params = {
        'company': company_name,
        'formType': form_type
    }

    response = requests.get(url, params=params)
    if response.status_code != 200:
        raise Exception(f"Request failed with status {response.status_code}")

    return response.json()

# Example usage to get filings for a specific
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>How to Query 9 Million US Healthcare Providers via API (NPI Registry)</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 21 Aug 2026 19:01:10 +0000</pubDate>
      <link>https://dev.to/carrierone/how-to-query-9-million-us-healthcare-providers-via-api-npi-registry-3fig</link>
      <guid>https://dev.to/carrierone/how-to-query-9-million-us-healthcare-providers-via-api-npi-registry-3fig</guid>
      <description>&lt;h2&gt;
  
  
  How to Query 9 Million US Healthcare Providers via API (NPI Registry)
&lt;/h2&gt;

&lt;p&gt;When developing healthcare applications that require a provider directory or need to authenticate prior authorizations, having access to the NPI registry is crucial. The National Provider Identifier (NPI) database contains information on over 9 million U.S. healthcare providers, including physicians, nurses, pharmacists, and other allied health professionals.&lt;/p&gt;

&lt;p&gt;To integrate this vast dataset into your application, you can leverage an API endpoint provided by VeriFone, which offers the NPI registry data in a sample format at api.verilexdata.com/api/v1/npi/sample. This allows developers to quickly test and prototype integration without needing to manage large datasets or handle complex queries.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Querying Large Datasets of Healthcare Providers
&lt;/h3&gt;

&lt;p&gt;Developers often need to look up healthcare providers by their NPI number, name, specialty, or location. The existing NPI database is vast and comprehensive, but accessing specific records requires a structured approach. Without direct access to the full dataset, developers often find themselves writing custom SQL queries or API requests that can be time-consuming and error-prone.&lt;/p&gt;

&lt;h3&gt;
  
  
  Python Code Example: Querying Healthcare Providers by NPI Number
&lt;/h3&gt;

&lt;p&gt;Here's an example of how you might query for healthcare providers using their NPI number in a Python script. This is a simplified version to illustrate the process:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>OTC Stock Shell Risk Scoring: How to Screen Penny Stocks Programmatically</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 18 Aug 2026 19:01:07 +0000</pubDate>
      <link>https://dev.to/carrierone/otc-stock-shell-risk-scoring-how-to-screen-penny-stocks-programmatically-37fb</link>
      <guid>https://dev.to/carrierone/otc-stock-shell-risk-scoring-how-to-screen-penny-stocks-programmatically-37fb</guid>
      <description>&lt;h2&gt;
  
  
  OTC Stock Shell Risk Scoring: How to Screen Penny Stocks Programmatically
&lt;/h2&gt;

&lt;p&gt;When building retail trading tools or fintech apps that need to screen penny stocks and other over-the-counter (OTC) companies, one of the most significant challenges is identifying shell companies. These are entities with no real business operations but often have inflated stock prices due to speculative buying and selling.&lt;/p&gt;

&lt;h3&gt;
  
  
  Identifying Shell Companies: A Python Example
&lt;/h3&gt;

&lt;p&gt;Here's a simple example using Python to identify OTC companies that may be shell companies:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

# API endpoint for screening OTC companies
url = "https://api.verilexdata.com/api/v1/otc/sample"

def screen_otc_companies():
    response = requests.get(url)

    if response.status_code == 200:
        otc_data = response.json()

        # Assuming we are interested in a specific attribute like 'company_name' and 'status'
        filtered_data = [
            {"name": company["company_name"], "status": company["status"]}
            for company in otc_data
            if company["status"] == "shell"
        ]

        return filtered_data
    else:
        print(f"Failed to retrieve data: {response.status_code}")
        return []

# Call the function and display results
screened_companies = screen_otc_companies()
for company in
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Federal Contract Award Data (USASpending) via API</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 14 Aug 2026 19:01:12 +0000</pubDate>
      <link>https://dev.to/carrierone/federal-contract-award-data-usaspending-via-api-7fh</link>
      <guid>https://dev.to/carrierone/federal-contract-award-data-usaspending-via-api-7fh</guid>
      <description>&lt;h2&gt;
  
  
  Federal Contract Award Data (USASpending) via API
&lt;/h2&gt;

&lt;p&gt;When developing tools for government tech projects, procurement analytics, or federal contractor business development, access to real-time and historical data is crucial. One of the most comprehensive sources for such data comes from USAspending, an official website that provides detailed information on all contracts awarded by the U.S. Government.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem: Extracting Data Efficiently
&lt;/h3&gt;

&lt;p&gt;Extracting contract award data directly from the USAspending website can be cumbersome due to its complex structure and limited search capabilities. However, using an API endpoint like verilexdata.com offers a more efficient solution. This API allows developers to quickly retrieve specific information such as awards by agency, vendor, or NAICS code.&lt;/p&gt;

&lt;h3&gt;
  
  
  A Simple Python Code Example
&lt;/h3&gt;

&lt;p&gt;Here is a simple example of how you can use the &lt;code&gt;requests&lt;/code&gt; library in Python to search for contracts awarded to a particular vendor:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

# Define your API endpoint URL and parameters
url = "https://verilexdata.com/api/v1/search"
params = {
    "q": "vendor_name",
    "fields": ["agency", "award_amount", "vendor_name"],
}

# Make the request to the API
response = requests.get(url, params=params)

# Check if the request was successful
if response.status_code == 200:
    # Parse the JSON response
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>NOAA Weather Data API: Historical and Current Weather for Developers</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 11 Aug 2026 19:01:09 +0000</pubDate>
      <link>https://dev.to/carrierone/noaa-weather-data-api-historical-and-current-weather-for-developers-106l</link>
      <guid>https://dev.to/carrierone/noaa-weather-data-api-historical-and-current-weather-for-developers-106l</guid>
      <description>&lt;h2&gt;
  
  
  NOAA Weather Data API: Accessing Historical and Current Observations for Developers
&lt;/h2&gt;

&lt;p&gt;When developing applications that rely on real-time or historical weather data, developers often turn to APIs like those provided by the National Oceanic and Atmospheric Administration (NOAA). For instance, the &lt;code&gt;api.verilexdata.com/api/v1/weather/sample&lt;/code&gt; endpoint can be a valuable resource. This article will demonstrate how you can access this data using Python.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Accessing NOAA Weather Data in Your Applications
&lt;/h3&gt;

&lt;p&gt;You might need to incorporate weather information into your app for everything from logistics and supply chain management, to agricultural applications or insurance calculations. The challenge is often finding an efficient way to get the necessary data quickly and reliably. One solution is to use a dedicated API like &lt;code&gt;api.verilexdata.com/api/v1/weather/sample&lt;/code&gt; that provides historical and current weather observations.&lt;/p&gt;

&lt;h3&gt;
  
  
  Small Python Code Example
&lt;/h3&gt;

&lt;p&gt;Here's a simple example of how you can fetch data from this endpoint using Python:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

# Define the URL for NOAA weather data
url = "https://api.verilexdata.com/api/v1/weather/sample"

# Make an HTTP GET request to fetch the data
response = requests.get(url)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    # Parse the JSON response into a Python dictionary
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>FRED and BLS Economic Indicator Data for Developers</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 07 Aug 2026 19:01:02 +0000</pubDate>
      <link>https://dev.to/carrierone/fred-and-bls-economic-indicator-data-for-developers-1jgd</link>
      <guid>https://dev.to/carrierone/fred-and-bls-economic-indicator-data-for-developers-1jgd</guid>
      <description>&lt;h2&gt;
  
  
  FRED and BLS Economic Indicator Data for Developers
&lt;/h2&gt;

&lt;p&gt;Developers often need access to economic indicators like CPI, NFP, GDP, PCE, and unemployment rates for their macro trading or analytics apps. These data points are crucial for understanding market trends and making informed decisions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Accessing the Latest Economic Indicators in Python
&lt;/h3&gt;

&lt;p&gt;Let's say you want to get the latest Consumer Price Index (CPI), Non-Farm Payrolls (NFP), GDP, Personal Consumption Expenditures (PCE) index, and Unemployment Rate data using Python. Fetching this information directly from FRED or BLS can be a bit cumbersome.&lt;/p&gt;

&lt;p&gt;Here is an example of how you might use the &lt;code&gt;requests&lt;/code&gt; library to fetch the NFP data:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;get_nfp_data&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.verilexdata.com/api/v1/econ/stats?indicator=NFP&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
    &lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Failed to retrieve data: &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="bp"&gt;None&lt;/span&gt;

&lt;span class="n"&gt;nfp_data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;get_nfp_data&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;nfp_data&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;nfp_data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Endpoint for Economic Indicator Data
&lt;/h3&gt;

&lt;p&gt;For accessing the latest economic indicators like CPI, NFP, GDP, PCE, and unemployment&lt;/p&gt;

</description>
    </item>
    <item>
      <title>DeFi Liquidation Signals and Whale Wallet Tracking via API</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 04 Aug 2026 19:01:25 +0000</pubDate>
      <link>https://dev.to/carrierone/defi-liquidation-signals-and-whale-wallet-tracking-via-api-512k</link>
      <guid>https://dev.to/carrierone/defi-liquidation-signals-and-whale-wallet-tracking-via-api-512k</guid>
      <description>&lt;h2&gt;
  
  
  DeFi Liquidation Signals and Whale Wallet Tracking via API
&lt;/h2&gt;

&lt;p&gt;In the world of decentralized finance (DeFi), understanding and mitigating risks is crucial for developers and users alike. One common risk involves liquidations, where a user’s collateral may be seized if their borrowed assets fall below a certain threshold. This situation can lead to significant losses, especially in volatile markets.&lt;/p&gt;

&lt;p&gt;Another aspect is monitoring whale wallet movements—large investors who often have substantial influence over DeFi protocols’ health and stability. These wallets are typically large holders of tokens or borrowable assets, posing both opportunities and risks for projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  Liquidation Signals: Aave/Compound/Morpho Stress Indices
&lt;/h3&gt;

&lt;p&gt;To address these concerns, developers can leverage APIs that provide real-time data on liquidations and whale wallet movements. For instance, the verilexdata.com API offers signals specific to protocols like Aave, Compound, and Morpho, as well as broader stress indices.&lt;/p&gt;

&lt;p&gt;Here’s a simple Python example using &lt;code&gt;requests&lt;/code&gt; library to fetch these signals:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import requests

def get_defi_signals():
    # Replace 'your_api_key' with your actual API key
    api_key = 'your_api_key'

    url = f"https://api.verilexdata.com/v1/defi-signals?apiKey={api_key}"
    response = requests.get(url)

    if response.status_code ==
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Polymarket Data API: Smart Money Tracking and Cross-Market Arbitrage</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 31 Jul 2026 19:01:28 +0000</pubDate>
      <link>https://dev.to/carrierone/polymarket-data-api-smart-money-tracking-and-cross-market-arbitrage-3n7n</link>
      <guid>https://dev.to/carrierone/polymarket-data-api-smart-money-tracking-and-cross-market-arbitrage-3n7n</guid>
      <description>&lt;h2&gt;
  
  
  Smart Money Signals and Cross-Market Arbitrage: A Practical Look at Polymarket Data
&lt;/h2&gt;

&lt;p&gt;As prediction market traders and developers, we're always looking for ways to stay ahead of the game. One resource that can provide valuable insights is Polymarket's data API. This article will introduce you to how you can use the &lt;code&gt;api.verilexdata.com/api/v1/pm/stats&lt;/code&gt; endpoint to gather smart money signals and implement cross-market arbitrage strategies.&lt;/p&gt;

&lt;h3&gt;
  
  
  Understanding Smart Money Signals
&lt;/h3&gt;

&lt;p&gt;Smart money signals often come from large traders who have significant influence over market movements. By tracking these signals, you can gain an edge in your trading decisions. Polymarket's data API provides access to such signals through various metrics like the number of active users, the frequency of trades, and more.&lt;/p&gt;

&lt;p&gt;Here’s a simple Python script that fetches recent smart money activity:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;get_smart_money_signals&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.verilexdata.com/api/v1/pm/stats&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;

    &lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;data&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;recent_smart_money_signals&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Failed to fetch smart money signals&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="bp"&gt;None&lt;/span&gt;

&lt;span class="c1"&gt;# Example usage
&lt;/span&gt;&lt;span class="n"&gt;signals&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;get_smart_money_signals&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;signals&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;sig&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;signals&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;sig&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>USPTO Patent and Trademark Data via REST API</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Tue, 28 Jul 2026 19:01:15 +0000</pubDate>
      <link>https://dev.to/carrierone/uspto-patent-and-trademark-data-via-rest-api-4mf7</link>
      <guid>https://dev.to/carrierone/uspto-patent-and-trademark-data-via-rest-api-4mf7</guid>
      <description>&lt;h2&gt;
  
  
  USPTO Patent and Trademark Data via REST API
&lt;/h2&gt;

&lt;p&gt;For developers building tools that require patent search functionality, accessing data from the United States Patent and Trademark Office (USPTO) can be a valuable resource. The USPTO offers a RESTful API where one can query patents based on various criteria such as keyword, inventor, or assignee.&lt;/p&gt;

&lt;p&gt;To get started with fetching patent data via this API, here's a small Python code example that uses the &lt;code&gt;requests&lt;/code&gt; library to search for patents containing a specific keyword:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;search_patents&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;keyword&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
    &lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.verilexdata.com/api/v1/patents/sample&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
    &lt;span class="n"&gt;params&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;q&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;'"&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;keyword&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;  &lt;span class="c1"&gt;# Search using double quotes around the keyword
&lt;/span&gt;        &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;format&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;json&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;

    &lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;params&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;params&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;raise&lt;/span&gt; &lt;span class="nc"&gt;Exception&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sa"&gt;f&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Failed to fetch patents: &lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;status_code&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Example usage
&lt;/span&gt;&lt;span class="n"&gt;keyword&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;artificial intelligence&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="n"&gt;patents_data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;search_patents&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;keyword&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;patents_data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code snippet searches for patents containing the keyword "artificial intelligence". It constructs a URL with the appropriate query parameters and sends a GET request. If the response status is 2&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
