> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api-docs.papertracc.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api-docs.papertracc.com/_mcp/server.

# Get Tax Profiles

GET https://api.papertracc.com/v1/configs/tax

Returns all tax profiles for the active project.

Reference: https://api-docs.papertracc.com/papertracc/configurations/tax-profiles/get-tax-profiles

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /configs/tax:
    get:
      operationId: Get Tax Profiles
      summary: Get Tax Profiles
      description: Returns all tax profiles for the active project.
      tags:
        - taxProfiles
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Configurations_Tax Profiles_Get Tax
                  Profiles_Response_200
servers:
  - url: https://api.papertracc.com/v1
    description: Production
  - url: https://api.papertracc.com/rc-1
    description: Release Candidate 1
components:
  schemas:
    ConfigsTaxGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
        code:
          type: string
        name:
          type: string
        rate:
          type: number
          format: double
        is_active:
          type: boolean
        created_at:
          type: string
          format: date-time
        project_id:
          type: string
        is_compound:
          type: boolean
        is_recoverable:
          type: boolean
        input_account_id:
          type: string
          format: uuid
        output_account_id:
          type: string
          format: uuid
      required:
        - id
        - code
        - name
        - rate
        - is_active
        - created_at
        - project_id
        - is_compound
        - is_recoverable
        - input_account_id
        - output_account_id
      title: ConfigsTaxGetResponsesContentApplicationJsonSchemaDataItems
    Configurations_Tax Profiles_Get Tax Profiles_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/ConfigsTaxGetResponsesContentApplicationJsonSchemaDataItems
        status:
          type: boolean
        message:
          type: string
      required:
        - data
        - status
        - message
      title: Configurations_Tax Profiles_Get Tax Profiles_Response_200
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    identityAuth:
      type: apiKey
      in: header
      name: identity
      description: The identity for the active project.

```

## Examples



**Response**

```json
{
  "data": [
    {
      "id": "78c68f6d-d734-4822-9a6c-73f517a0e5c1",
      "code": "VAT75",
      "name": "VAT 7.5%",
      "rate": 7.5,
      "is_active": true,
      "created_at": "2026-06-18T10:00:00Z",
      "project_id": "spruce-demo",
      "is_compound": false,
      "is_recoverable": true,
      "input_account_id": "b85a9785-fbbd-4858-b9cd-c79ab926e70e",
      "output_account_id": "2b0d1461-e52e-4a1a-a69c-11801431c2c9"
    }
  ],
  "status": true,
  "message": "Successfully fetched tax profiles"
}
```

**SDK Code**

```python Configurations_Tax Profiles_Get Tax Profiles_example
import requests

url = "https://api.papertracc.com/v1/configs/tax"

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

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

print(response.json())
```

```javascript Configurations_Tax Profiles_Get Tax Profiles_example
const url = 'https://api.papertracc.com/v1/configs/tax';
const options = {method: 'GET', headers: {Authorization: 'Bearer <apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Configurations_Tax Profiles_Get Tax Profiles_example
package main

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

func main() {

	url := "https://api.papertracc.com/v1/configs/tax"

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

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

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

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

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Configurations_Tax Profiles_Get Tax Profiles_example
require 'uri'
require 'net/http'

url = URI("https://api.papertracc.com/v1/configs/tax")

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

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

response = http.request(request)
puts response.read_body
```

```java Configurations_Tax Profiles_Get Tax Profiles_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.papertracc.com/v1/configs/tax")
  .header("Authorization", "Bearer <apiKey>")
  .asString();
```

```php Configurations_Tax Profiles_Get Tax Profiles_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.papertracc.com/v1/configs/tax', [
  'headers' => [
    'Authorization' => 'Bearer <apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Configurations_Tax Profiles_Get Tax Profiles_example
using RestSharp;

var client = new RestClient("https://api.papertracc.com/v1/configs/tax");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Configurations_Tax Profiles_Get Tax Profiles_example
import Foundation

let headers = ["Authorization": "Bearer <apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.papertracc.com/v1/configs/tax")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```