Current mortgage rate data across every state, loan type, and purpose. Built for fintech developers who need reliable, structured data.
Fetch current purchase rates for New York — filter by state, purpose, or pull all 51 at once.
curl -X GET "https://api.notreal.yet/prod/rates/NY?purpose=purchase" \ -H "x-api-key: YOUR_API_KEY"
Invoke-RestMethod -Uri "https://api.notreal.yet/prod/rates/NY?purpose=purchase" ` -Headers @{ "x-api-key" = "YOUR_API_KEY" } ` -Method Get
const response = await fetch( "https://api.notreal.yet/prod/rates/NY?purpose=purchase", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json();
const https = require("https"); const options = { hostname: "api.notreal.yet", path: "/prod/rates/NY?purpose=purchase", headers: { "x-api-key": "YOUR_API_KEY" } }; https.get(options, (res) => { let data = ""; res.on("data", chunk => data += chunk); res.on("end", () => console.log(JSON.parse(data))); });
import requests response = requests.get( "https://api.notreal.yet/prod/rates/NY", params={"purpose": "purchase"}, headers={"x-api-key": "YOUR_API_KEY"} ) data = response.json()
using HttpClient client = new(); client.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY"); var response = await client.GetAsync( "https://api.notreal.yet/prod/rates/NY?purpose=purchase" ); var json = await response.Content.ReadAsStringAsync();
Returns min, average, and max APR for each loan program as a three-element array.
{ "state": "NY", "date": "2026-04-25", "purchase": { "10_year_arm": [ 6.204, 6.290, 6.375 ], "10_year_fixed": [ 5.037, 5.554, 5.875 ], "15_year_fixed": [ 5.007, 5.421, 5.750 ], "20_year_fixed": [ 5.800, 6.367, 6.875 ], "30_year_fixed": [ 5.857, 6.250, 6.762 ], "3_year_arm": [ 6.585, 6.585, 6.585 ], "5_year_arm": [ 6.228, 6.250, 6.272 ], "7_year_arm": [ 5.971, 6.077, 6.183 ] } }
REST endpoints returning JSON. Query current rates across all states and loan types with a single authenticated request.
purpose=purchase or refinanceStart free while you build. Scale up when you're ready. All plans include access to every loan program.