Skip to main content

Specifying the Version

Include the version in the API path:
https://api.frankie.one/v2/individuals
Patch versions are applied automatically—you only specify the major version in requests.

Current Versions

APIVersionStatus
KYC API (Individuals)v2Active
KYB API (Organizations)v2.1Active
Legacy APIv1Deprecated
v1 endpoints are legacy and should not be used for new integrations.

Semantic Versioning

We use Semantic Versioning to label releases:
MAJOR.MINOR.PATCH
TypeWhen It ChangesImpact
MAJORBreaking changesMay require code updates
MINORNew features (backwards-compatible)No changes required
PATCHBug fixesNo changes required

Example: v1 vs v2

Endpoint:
POST /v1/entity
Headers:
Authorization: Bearer YOUR_API_KEY
Request:
{
  "entity": {
    "entityType": "INDIVIDUAL",
    "givenName": "John",
    "familyName": "Doe",
    "dateOfBirth": "1990-03-27",
    "streetNumber": "525",
    "streetName": "Kent",
    "city": "Manhattan",
    "country": "USA"
  }
}

Key Differences

Changev1v2
Endpoint/v1/entity/v2/individuals
Auth headerAuthorization: Bearerapi_key + X-Frankie-CustomerID
Root objectentityindividual
Name fieldsFlat (givenName, familyName)Nested name object
Date of birthString "1990-03-27"Object with year, month, day
AddressFlat fieldsStructured addresses array with type and status

Backwards Compatibility

Within a major version, we guarantee:
  • Existing endpoints continue to work
  • Response fields won’t be removed
  • Required request fields won’t be added
We may add:
  • New optional request fields
  • New response fields
  • New endpoints
Build your integration to ignore unknown fields in responses.

Deprecation Policy

When we deprecate a version:
  1. Announcement — Minimum 6 months notice
  2. Migration period — Both versions run in parallel
  3. Sunset — Old version retired
Deprecated endpoints return a Deprecation header:
Deprecation: true
Sunset: Sat, 01 Jan 2028 00:00:00 GMT

Base URLs

EnvironmentURL
UAThttps://api.uat.frankie.one
Productionhttps://api.frankie.one

Staying Informed