<?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>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>
    <item>
      <title>Querying Federal Court Records (PACER) Programmatically</title>
      <dc:creator>carrierone</dc:creator>
      <pubDate>Fri, 24 Jul 2026 19:01:02 +0000</pubDate>
      <link>https://dev.to/carrierone/querying-federal-court-records-pacer-programmatically-47f3</link>
      <guid>https://dev.to/carrierone/querying-federal-court-records-pacer-programmatically-47f3</guid>
      <description>&lt;h2&gt;
  
  
  Querying Federal Court Records (PACER) Programmatically for LegalTech Developers
&lt;/h2&gt;

&lt;p&gt;Legaltech developers often need to access and query federal court records programmatically. One essential resource is PACER (Public Access to Court Electronic Records), a system that provides public access to federal case and docket data through an API.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem: Fetching Data from PACER
&lt;/h3&gt;

&lt;p&gt;Fetching data from PACER can be cumbersome due to its complex authentication requirements and the need for handling large datasets efficiently. Additionally, the API documentation isn't always comprehensive, leading to potential errors or inefficiencies in queries.&lt;/p&gt;

&lt;h4&gt;
  
  
  A Simple Python Example
&lt;/h4&gt;

&lt;p&gt;Below is a simple example of how you might start fetching basic case information using Python's &lt;code&gt;requests&lt;/code&gt; library:&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_case_data(case_id):
    url = f"https://api.pacerpc.gov/rest/v1/case/{case_id}"

    headers = {
        'Authorization': 'Bearer YOUR_API_KEY'
    }

    response = requests.get(url, headers=headers)

    if response.status_code == 200:
        return response.json()
    else:
        print(f"Error fetching data: {response.text}")
        return None

# Replace `YOUR_API_KEY` with your actual PACER API key
case_id = '123456789'
data = fetch_case_data(case_id)
&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>Tue, 21 Jul 2026 19:01:36 +0000</pubDate>
      <link>https://dev.to/carrierone/ofac-sanctions-screening-for-developers-how-to-check-addresses-and-names-3mdd</link>
      <guid>https://dev.to/carrierone/ofac-sanctions-screening-for-developers-how-to-check-addresses-and-names-3mdd</guid>
      <description>&lt;h2&gt;
  
  
  OFAC Sanctions Screening for Developers: How to Check Addresses and Names
&lt;/h2&gt;

&lt;p&gt;When developing KYC/AML compliance features into your fintech apps, one critical component is ensuring that transactions aren’t linked to the US Department of Treasury’s Office of Foreign Assets Control (OFAC) Specially Designated Nationals (SDN) list. The OFAC SDN list contains individuals or entities designated for blocking due to their involvement in terrorism, proliferation activities, and other prohibited activities.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Implementing OFAC Sanctions Checks
&lt;/h3&gt;

&lt;p&gt;To integrate these checks efficiently, developers often need a way to quickly verify whether an address or name is on the SDN list. This process can be time-consuming and requires access to a comprehensive dataset like OFAC’s Specially Designated Nationals (SDN) entries.&lt;/p&gt;

&lt;h3&gt;
  
  
  Python Code Example for Checking Names Against OFAC List
&lt;/h3&gt;

&lt;p&gt;Here’s a simple Python script that uses an endpoint provided by VeriLexData, which offers sanctions screening services:&lt;/p&gt;



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

def check_ofac_sanctions(name):
    url = "https://api.verilexdata.com/api/v1/sanctions/stats"

    # Prepare the data payload for the request
    data = {
        "name": name
    }

    response = requests.post(url, json=data)

    if response.status_code == 200:
        result = response.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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

&lt;p&gt;When developing financial applications that require access to SEC filings like 10-K, 10-Q, and 13-F, one common challenge is obtaining the latest data. Traditionally, this involves scraping the SEC's EDGAR database, which can be time-consuming and may not always provide real-time updates.&lt;/p&gt;

&lt;p&gt;However, there are APIs available that offer access to these filings without having to scrape manually. One such API endpoint is provided by VeriLexData at api.verilexdata.com/api/v1/sec/sample.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem
&lt;/h3&gt;

&lt;p&gt;To utilize this API for your application, you need a way to search and retrieve specific types of SEC filings based on either the company name or form type. For example, if you want to find all 10-K filings submitted by Apple Inc., you would need to query the API with the appropriate parameters.&lt;/p&gt;

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

&lt;p&gt;Here is an example of how you might structure a Python request using requests library to fetch SEC filings:&lt;/p&gt;



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

# Replace 'YOUR_API_KEY' with your actual API key if required
api_key = 'YOUR_API_KEY'
form_type = '10-K'  # Change this to the form type you're interested in, e.g., '13-F'

url = f'https://api.verilexdata.com/api
&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>Tue, 14 Jul 2026 19:01:10 +0000</pubDate>
      <link>https://dev.to/carrierone/how-to-query-9-million-us-healthcare-providers-via-api-npi-registry-33l8</link>
      <guid>https://dev.to/carrierone/how-to-query-9-million-us-healthcare-providers-via-api-npi-registry-33l8</guid>
      <description>&lt;h2&gt;
  
  
  Querying US Healthcare Providers Using NPI Number: A Practical Guide
&lt;/h2&gt;

&lt;p&gt;When developing healthcare applications that require integration with the National Provider Identifier (NPI) registry, being able to quickly and accurately look up providers by their NPI number is crucial. In this article, we'll explore how you can achieve this using an API endpoint provided by VeriSign's data services.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem
&lt;/h3&gt;

&lt;p&gt;Developing a healthcare app often involves needing to verify the provider information of doctors or other healthcare professionals. This could be for prior authorization processes, directory listings, or simply ensuring that all interactions are secure and compliant with regulations. One common way to access this information is through NPI numbers, but manually searching through databases can be time-consuming.&lt;/p&gt;

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

&lt;p&gt;Here’s a simple Python script using the &lt;code&gt;requests&lt;/code&gt; library to make an API call to retrieve provider data based on their NPI number:&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_npi_info(npi_number):
    url = f"https://api.verilexdata.com/api/v1/npi/sample/{npi_number}"
    response = requests.get(url)

    if response.status_code == 200:
        return response.json()
    else:
        return None

# Example usage
npi_number = "123456789"
npi_data = get_npi_info(npi_number)

if
&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>Fri, 10 Jul 2026 19:01:07 +0000</pubDate>
      <link>https://dev.to/carrierone/otc-stock-shell-risk-scoring-how-to-screen-penny-stocks-programmatically-35mm</link>
      <guid>https://dev.to/carrierone/otc-stock-shell-risk-scoring-how-to-screen-penny-stocks-programmatically-35mm</guid>
      <description>&lt;h2&gt;
  
  
  OTC Stock Shell Risk Scoring: How to Screen Penny Stocks Programmatically
&lt;/h2&gt;

&lt;p&gt;As developers working on retail trading tools and fintech apps, identifying shell companies—often referred to as "penny stocks"—is crucial. These companies often operate under pseudonyms or have minimal public information. Detecting these entities can be challenging but is essential for avoiding financial risks.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem: Shell Companies in OTC Markets
&lt;/h3&gt;

&lt;p&gt;Shell company detection involves analyzing names and other details of companies listed on the Over-The-Counter (OTC) markets, which are not regulated as strictly as those listed on major exchanges like NASDAQ or NYSE. These firms often use misleading names to attract attention from investors who may be unaware of their true nature.&lt;/p&gt;

&lt;h3&gt;
  
  
  A Simple Python Example for Shell Detection
&lt;/h3&gt;

&lt;p&gt;Here’s a simple example using Python that demonstrates how you might filter out shell companies based on name and industry:&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_otc_companies(api_key):
    url = "https://api.verilexdata.com/api/v1/otc/sample"
    headers = {"Authorization": f"Bearer {api_key}"}

    response = requests.get(url, headers=headers)
    companies_data = response.json()

    return companies_data

def filter_shell_companies(companies):
    # Define a list of keywords to look for in company names
    shell_keywords = ["shell",
&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>Tue, 07 Jul 2026 19:01:14 +0000</pubDate>
      <link>https://dev.to/carrierone/federal-contract-award-data-usaspending-via-api-53f8</link>
      <guid>https://dev.to/carrierone/federal-contract-award-data-usaspending-via-api-53f8</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 business development for federal contractors, having access to accurate and up-to-date contract award data can be invaluable. The USASpending dataset is a rich resource that provides comprehensive information on all federal contracts awarded through the USA.gov site.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problem: Retrieving Contract Award Data by Agency, Vendor, or NAICS Code
&lt;/h3&gt;

&lt;p&gt;To build robust tools that filter and analyze this data, you need to efficiently retrieve specific subsets of contract award records based on criteria such as agency name, vendor name, or North American Industry Classification System (NAICS) code. The USASpending API offers a powerful way to do just that.&lt;/p&gt;

&lt;h3&gt;
  
  
  Solution: Example Python Code for Retrieving Contracts by NAICS Code
&lt;/h3&gt;

&lt;p&gt;Here's an example of how you can use the USASpending API to fetch federal contracts based on a specific NAICS code, say 541510 (which represents "Management and Technical Consulting Services"):&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 personal API key for authentication
API_KEY = 'YOUR_API_KEY'

def get_contracts_by_naics(naics_code):
    url = f"https://api.verilexdata.com/usaspending/api/v2/search?naics_code={naics_code}&amp;amp;limit=10"

    headers = {
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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