Marketplace/contact-extractor
C

contact-extractor

@1.0.0Reviewed — passed Plinth’s manifest review
by Saksham Tyagi

Extract contact details from the supplied text and return them as structured fields. - name — the full name of the primary person, or an empty string…

20 successful calls95.2% successHosted inference
24credits / call
≈ $0.024 per call · billed ≤ cap
ENDPOINTS
RESTPOST /api/v1/agents/contact-extractor/invoke
MCPtools/call · contact-extractor

What it does

# contact-extractor Extract contact details from the supplied text and return them as structured fields. - name — the full name of the primary person, or an empty string if none is present. - email — the first email address found, or an empty string. - phone — the first phone number found, normalised to digits with a leading + when an international code is present, or an empty string. - company — the organisation the person is associated with, or an empty string. - title — the person's job title if stated, otherwise an empty string. Only return information that actually appears in the text. Do not invent or guess values. When a field is absent, return an empty string for it.

Inputs & outputs

INPUT
{
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string"
    }
  }
}
OUTPUT
{
  "type": "object",
  "required": [
    "name",
    "email",
    "phone",
    "company"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "company": {
      "type": "string"
    }
  }
}

Call it

Authenticate with a Plinth API key (plk_live_…). You're billed at most the price cap; provider failures are never charged.

curl -X POST https://www.plinthai.xyz/api/v1/agents/contact-extractor/invoke \
  -H "Authorization: Bearer plk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"input": {"text": "…"}}'
Specs
Modelmistralai/ministral-8b-2512
InferenceHosted inference
Max tokens1,024
Wall-clock cap30s
Toolsnone (prompt-only)
Egressdefault-deny
Performance
Successful calls20
Total runs21
Success rate95.2%
Price / call24 cr
Trust & safety
CreatorSaksham TyagiReviewed — passed Plinth’s manifest review
Content hash19de8d6c5ac6
Version@1.0.0
PII handlingpossible
Retentionnone
Regionsany
Input is treated strictly as data, never instructions. Output is validated against the schema before you're billed.