Chaldal Identity API

The Identity API from Chaldal — 4 operation(s) for identity.

Operations 4

GET /api/Identity/GetDeliveryAreas #
POST /api/Identity/SearchForIdentityInMyOrg #
GET /api/Identity/GetAddressInfoFromAddressIdInMyOrg #
GET /api/Identity/GetAddressInfoListFromAddressIdListInMyOrg #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chaldal-identity-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chaldal-identity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: My Title Accounts Identity API
  version: 1.0.0
servers:
- url: https://eggtransport.chaldal.com
tags:
- name: Identity
paths:
  /api/Identity/GetDeliveryAreas:
    get:
      tags:
      - Identity
      operationId: Identity_GetDeliveryAreas
      responses:
        '200':
          description: ''
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliveryArea'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliveryArea'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliveryArea'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliveryArea'
  /api/Identity/SearchForIdentityInMyOrg:
    post:
      tags:
      - Identity
      operationId: Identity_SearchForIdentityInMyOrg
      parameters:
      - name: phoneNumber
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Possibly Profile and Addresses
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfTupleOfIdentityProfileAndIEnumerableOfAddressInfoDto'
            text/csv:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfTupleOfIdentityProfileAndIEnumerableOfAddressInfoDto'
            application/json:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfTupleOfIdentityProfileAndIEnumerableOfAddressInfoDto'
            text/json:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfTupleOfIdentityProfileAndIEnumerableOfAddressInfoDto'
        '403':
          description: Not authorized to view customers for Org
        '401':
          description: Not logged in
  /api/Identity/GetAddressInfoFromAddressIdInMyOrg:
    get:
      tags:
      - Identity
      operationId: Identity_GetAddressInfoFromAddressIdInMyOrg
      parameters:
      - name: addressId
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Address Info
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AddressInfoDto'
            text/csv:
              schema:
                $ref: '#/components/schemas/AddressInfoDto'
            application/json:
              schema:
                $ref: '#/components/schemas/AddressInfoDto'
            text/json:
              schema:
                $ref: '#/components/schemas/AddressInfoDto'
        '401':
          description: Not logged in
        '403':
          description: Not authorized to view customer Info
  /api/Identity/GetAddressInfoListFromAddressIdListInMyOrg:
    get:
      tags:
      - Identity
      operationId: Identity_GetAddressInfoListFromAddressIdListInMyOrg
      parameters:
      - name: addressIdList
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Address Infos
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressInfoDto'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressInfoDto'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressInfoDto'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddressInfoDto'
        '401':
          description: Not logged in
        '403':
          description: Not authorized to view customer Info
components:
  schemas:
    AddressIdDto:
      type: object
    FSharpOptionOfTupleOfIdentityProfileAndIEnumerableOfAddressInfoDto:
      type: object
    DeliveryAreaId:
      type: object
    DeliveryAreaDto:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/DeliveryAreaIdDto'
        name:
          type: string
    FSharpOptionOfGeoLocationDto:
      type: object
    AddressInfoDto:
      type: object
      required:
      - identity
      properties:
        address:
          $ref: '#/components/schemas/AddressIdDto'
        identity:
          type: string
          format: guid
        fullName:
          type: string
        streetAddress:
          type: string
        phoneNumber:
          type: string
        deliveryArea:
          $ref: '#/components/schemas/DeliveryAreaDto'
        customerHub:
          type: string
        geoLocation:
          $ref: '#/components/schemas/FSharpOptionOfGeoLocationDto'
        confidenceLevel:
          $ref: '#/components/schemas/ConfidenceLevelDto'
    DeliveryAreaIdDto:
      type: object
    DeliveryArea:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/DeliveryAreaId'
        name:
          type: string
    ConfidenceLevelDto:
      type: object
x-generator: NSwag v13.10.8.0 (NJsonSchema v10.3.11.0 (Newtonsoft.Json v13.0.0.0))