Skip to main content
GET
/
v1
/
businesses
/
{businessId}
/
tax-estimates
/
profile
Get tax profile
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile"

headers = {"Authorization": "Bearer <token>"}

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

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/profile")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "data": {
    "type": "Tax_Profile",
    "tax_country_code": "US",
    "us_configuration": {
      "federal": {
        "annual_w2_income": 123,
        "tip_income": 123,
        "overtime_income": 123,
        "withholding": {
          "use_custom_withholding": true,
          "amount": 123
        }
      },
      "state": {
        "tax_state": "CA",
        "num_exemptions": 123,
        "withholding": {
          "use_custom_withholding": true,
          "amount": 123
        }
      },
      "deductions": {
        "home_office": {
          "use_home_office_deduction": true,
          "home_office_area": 123
        },
        "vehicle": {
          "use_mileage_deduction": false,
          "vehicle_business_percent": 123,
          "mileage": {
            "use_user_estimated_business_mileage": true,
            "user_estimated_business_mileage": 123
          }
        }
      },
      "business_estimates": {
        "expenses": {
          "use_user_estimated_business_expenses": true,
          "user_estimated_business_expenses": 123
        },
        "revenue": {
          "use_user_estimated_business_revenue": true,
          "user_estimated_business_revenue": 123
        }
      }
    },
    "ca_configuration": {},
    "user_has_saved_tax_profile": true
  }
}
{
"description": "<string>",
"meta": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string

Content-Type must be set to application/json.

Path Parameters

businessId
string<uuid>
required

The UUID of the business.

Response

Tax profile for the business.

data
object
required

Tax profile configuration for a business.