> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Details by identity number

> Gets the person by identity number for Swedish identities

This endpoint is used to retrieve the personId for subsequent calls. You can query by personal identity numbers,
coordination numbers and retrieve a summary including the personId.


## OpenAPI

````yaml get /datasets/persons/se/{identityNumber}
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/persons/se/{identityNumber}:
    get:
      tags:
        - Persons_SE_
      summary: Details by identity number
      description: Gets the person by identity number for Swedish identities
      operationId: PersonDetailsByIdentityNumber
      parameters:
        - name: identityNumber
          in: path
          description: The person identity number
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Persons_Person_Dto:
      type: object
      properties:
        personId:
          type: integer
          format: int32
        nationalityCountryCodeAlpha2:
          type: string
          nullable: true
        personalIdentityNumber:
          type: string
          nullable: true
        isProtected:
          type: boolean
          nullable: true
        isMarried:
          type: boolean
          nullable: true
        givenName:
          type: string
          nullable: true
        firstName:
          type: string
          nullable: true
        middleName:
          type: string
          nullable: true
        lastName:
          type: string
          nullable: true
        fullName:
          type: string
          nullable: true
          readOnly: true
        sex:
          $ref: '#/components/schemas/Ormeo_Library_Entities_PersonSexType'
        isCoordinationNumber:
          type: boolean
          nullable: true
        birthday:
          type: string
          nullable: true
        age:
          type: integer
          format: int32
          nullable: true
          readOnly: true
      additionalProperties: false
    Ormeo_Library_Entities_PersonSexType:
      enum:
        - male
        - female
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````