AI agent integration

Your AI assistant can file a UK county court claim for you

JustClaim's API lets AI agents stage a small-claims case on a user's behalf. The agent collects the facts. We send the user a link to review, sign, and pay. We file with the court.

See it work

30-second demo

UserI'm owed £500 for a faulty product. Can you file a claim?
AgentStaging your claim with JustClaim now. I'll send you a link to review, sign, and pay.
AgentYour claim is ready: https://go.justclaim.co.uk/file-claim?resume=cs_a1b2c3d4e5f6a7b8&token=0123456789abcdef0123456789abcdef
JustClaim review-and-pay screen showing pre-filled claim details and Stripe checkout
The user lands on a pre-filled review screen. They edit anything wrong, tick the statement of truth, and pay.

The API

POST/api/agent/quote-n1

Get court fees, our service fee, and eligibility for a given claim amount. Read-only, no side effects.

curl -X POST https://go.justclaim.co.uk/api/agent/quote-n1 \
  -H 'content-type: application/json' \
  -d '{
    "amount_pence": 50000,
    "address_known": true,
    "jurisdiction": "england_and_wales"
  }'
POST/api/agent/stage-n1

Stage a claim from the user's facts (or finished particulars). Returns a checkout URL the user opens to review, sign, and pay.

curl -X POST https://go.justclaim.co.uk/api/agent/stage-n1 \
  -H 'content-type: application/json' \
  -d '{
    "claimant": {
      "name": "Jane Doe",
      "email": "jane@example.com",
      "address": {"line_1": "1 Test St", "city": "London", "postcode": "SW1A 1AA"}
    },
    "defendant": {
      "name": "Acme Ltd",
      "type": "ltd_company",
      "address_known": true,
      "address": {"line_1": "10 Defendant Rd", "city": "Manchester", "postcode": "M1 1AA"}
    },
    "amount_pence": 50000,
    "facts": "Faulty product bought 14 Feb 2026. Refund refused. LBA sent, deadline passed.",
    "jurisdiction": "england_and_wales"
  }'

How the human handoff works

The human always controls consent and payment. The agent never signs the statement of truth, never enters card details.

  1. 1

    Agent stages the claim

    Your agent sends structured facts to /api/agent/stage-n1. The agent never signs anything and never enters payment details.

  2. 2

    We send a checkout link

    JustClaim returns a single URL. The agent hands it to the user.

  3. 3

    Human reviews, signs, and pays

    The user opens the link, reviews the pre-filled claim, edits anything wrong, ticks the statement of truth, and pays the court fee plus our service fee via Stripe.

  4. 4

    JustClaim files with the court

    We submit the N1 to the County Court of England and Wales. The user gets a case number and tracking in their dashboard.

What you can file today

  • Jurisdiction: England and Wales only
  • Claim value: £1 to £100,000
  • Defendant types: individual, sole trader, partnership, Ltd company, PLC, or other
  • One form supported today: N1 (money claim)

Coming next: pre-action Letter Before Action, Financial Ombudsman complaint letter, Irish statutory demand under Companies Act 2014 section 570.

Fair use and rate limits

  • 30 quotes per minute per IP
  • 5 stages per minute per IP
  • Contact us for higher quotas

We rate-limit AI crawlers, we never block them.

Coming next

A remote MCP server so Claude and ChatGPT users can install JustClaim as a connector. More forms after that.

Build with us

  • Support: support@justclaim.co.uk
  • OpenAPI spec: https://go.justclaim.co.uk/api/openapi
  • Higher quota request: support@justclaim.co.uk with subject 'agent quota'