ToolsXpo

JSON & Data Formats

Apple PList to JSON Converter API

GET request to /v1/plist-to-json, returning text in the standard envelope.

GET/v1/plist-to-json2 credits / call Free tier

Authentication

Send your API key as a bearer token. Create one free in the dashboard.

Authorization: Bearer $TOOLSXPO_KEY

Parameters

Sent as query-string parameters. The values below are the examples used throughout this page.

NameExample value
plist<?xml version="1.0"?><plist version="1.0"><dict><key>Name</key><string>Alice</string></dict></plist>

Example request

curl "https://api.toolsxpo.com/v1/plist-to-json?plist=%3C%3Fxml%20version%3D%221.0%22%3F%3E%3Cplist%20version%3D%221.0%22%3E%3Cdict%3E%3Ckey%3EName%3C%2Fkey%3E%3Cstring%3EAlice%3C%2Fstring%3E%3C%2Fdict%3E%3C%2Fplist%3E" \
  -H "Authorization: Bearer $TOOLSXPO_KEY"

Response

Every endpoint answers with the same envelope. The result is in data (text); meta.credits reports what the call cost.

{
  "ok": true,
  "data": { /* text */ },
  "meta": { "credits": 2 }
}

Errors

Failures use the same envelope with ok: false and a machine-readable code.

StatusCodeMeaning
400invalid_inputA parameter failed validation. `details` lists which.
401unauthorizedMissing or invalid API key.
402quota_exceededOut of credits on this workspace.
404not_foundNo such tool.
429rate_limitedToo many requests. Retry after `Retry-After` seconds.
503service_unavailableTemporarily disabled by an administrator.