Remitian · Example Payload

Remitian List Jurisdictions Example

TaxPaymentsFintechAccountingWebhooksEmbedded Payments

Remitian List Jurisdictions Example is an example object payload from Remitian, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.remitian.com/v1/jurisdictions?country=US&type=federal",
    "headers": {
      "Authorization": "Bearer {api_key}"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": "us-irs",
          "name": "Internal Revenue Service",
          "country": "US",
          "type": "federal",
          "taxTypes": ["income_tax", "estimated_tax", "payroll_tax", "excise_tax"],
          "requiredFields": ["taxIdentifier", "taxPeriod", "taxType"],
          "paymentMethods": ["ach", "wire"],
          "active": true
        }
      ],
      "pagination": {
        "total": 1,
        "limit": 25,
        "offset": 0,
        "hasMore": false
      }
    }
  }
}