Hacker News new | past | comments | ask | show | jobs | submit login
Ask HN: What API do you wish for?
2 points by codegeek on Dec 29, 2016 | hide | past | favorite | 3 comments
There are tons of APIs out there. Is there a specific API that you really want but does not exist or exists in poor form ? I am learning how to build a good API and wonder if there are ideas to explore. I will open source it of course :)

One idea I have is to build a simple read only API for Sales Tax Rates. I will start with USA but can expand to Europe for VAT etc. It will be something like:

    usefulapi.com/salestax?country=usa&city=chicago

    {
        "rate" : "0.10"
    }



A single sales tax rate alone is only a (small) part of the equation: some classes of goods are taxed differently (e.g. raw food vs. cooked meals, fast food, alcohol), and different jurisdictions levy additional taxes that may vary inside a geographic area. There are city/town taxes, county taxes, state taxes, and sometimes, additional tax overlay districts where the money goes to some specific fund for an improvement.

So you'd want to be able to specify the class of product and a very fine-grained geographical location as inputs to your function, with the hopes that it will produce an accurate and preferably unambiguous result.


Sales tax APIs are complicated, because sales taxes are complicated. As mentioned, they vary with little reason or boundary, and for different types of product. E.g. Ohio doesn't tax food (unless eating at a restaurant), and (I think) NJ doesn't tax clothing.

I work in e-commerce, and it's just easier to have the client sign with a third party tax service who knows what they're doing and drop in their library, than try to figure it out yourself and risk the lawyers and tax people.


yes, good point. It cannot be that simple for sure. States like NY make it even more complicated when there are additional tax rates for cities such as NYC. Lot of factors to consider.




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: