CoinList Pii API
The Pii API from CoinList — 1 operation(s) for pii.
The Pii API from CoinList — 1 operation(s) for pii.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/coinlist-pii-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Frontline DocumentSubmissions Pii API
version: 0.1.0
servers:
- url: https://api.coinlist.co
variables: {}
security: []
tags:
- name: Pii
paths:
/v1/pii:
get:
callbacks: {}
description: Returns the user's PII (full legal name, country of citizenship, tax ID, permanent address) to pre-fill tax forms such as the W-8BEN. Fields that are unavailable are null.
operationId: getPii
parameters: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/Pii'
description: Successful response.
default:
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: Error response.
security:
- OAuth2: []
summary: Get PII for the authenticated partner and user
tags:
- Pii
components:
schemas:
Pii:
description: The user's PII used to pre-fill tax forms. Fields that are unavailable are null.
properties:
date_of_birth:
description: Date of birth as an ISO 8601 date (YYYY-MM-DD). Null for companies and when unavailable.
example: '1990-01-15'
format: date
type:
- string
- 'null'
x-struct: null
x-validate: null
full_legal_name:
description: 'Full legal name. For persons: first, middle and last name joined. For companies: the company name.'
example: Aleksander Nowak
type:
- string
- 'null'
x-struct: null
x-validate: null
jurisdiction:
description: Jurisdiction of the entity, sourced from the entity's address country
properties:
iso_2:
description: ISO 3166-1 alpha-2 country code
example: PL
type: string
x-struct: null
x-validate: null
name:
description: Country display name
example: Poland
type:
- string
- 'null'
x-struct: null
x-validate: null
required:
- iso_2
- name
type:
- object
- 'null'
x-struct: null
x-validate: null
kind:
description: Kind of the entity the PII belongs to
enum:
- person
- company
example: person
type: string
x-struct: null
x-validate: null
object:
description: String representing the object's type. Objects of the same type share the same value.
enum:
- user_pii
type: string
x-struct: null
x-validate: null
permanent_address:
description: Permanent address of the entity
properties:
city:
example: Warsaw
type:
- string
- 'null'
x-struct: null
x-validate: null
country:
description: ISO 3166-1 alpha-2 country code
example: PL
type:
- string
- 'null'
x-struct: null
x-validate: null
postal_code:
example: 00-001
type:
- string
- 'null'
x-struct: null
x-validate: null
state:
description: State or region code
type:
- string
- 'null'
x-struct: null
x-validate: null
street:
example: ul. Nowy Świat 12
type:
- string
- 'null'
x-struct: null
x-validate: null
required:
- street
- city
- state
- postal_code
- country
type: object
x-struct: null
x-validate: null
tax_id:
description: 'Tax identification number. For persons: SSN or foreign TIN. For companies: EIN.'
type:
- string
- 'null'
x-struct: null
x-validate: null
required:
- object
- kind
- full_legal_name
- date_of_birth
- jurisdiction
- tax_id
- permanent_address
title: Pii
type: object
x-struct: Elixir.FrontlineAPIWeb.OpenApi.Schemas.Pii
x-validate: null
Error:
additionalProperties: false
properties:
code:
description: A human-readable message providing more details about the error.
type: string
x-struct: null
x-validate: null
errors:
additionalProperties:
items:
type: string
x-struct: null
x-validate: null
type: array
x-struct: null
x-validate: null
type: object
x-struct: null
x-validate: null
event_id:
description: The unique identifier for the error event. This is useful for tracking and debugging.
type: string
x-struct: null
x-validate: null
message:
description: For some errors that could be handled programmatically, a short string indicating the error code reported.
type: string
x-struct: null
x-validate: null
type:
description: The type of error returned. One of `api_error`, `invalid_request_error`
enum:
- api_error
- invalid_request_error
type: string
x-struct: null
x-validate: null
required:
- type
- message
title: Error
type: object
x-struct: Elixir.FrontlineAPIWeb.OpenApi.Schemas.ApiError
x-validate: null
securitySchemes:
OAuth2:
description: OAuth 2.0 authorization and token endpoints
flows:
authorizationCode:
authorizationUrl: /oauth/authorize
refreshUrl: /oauth/token
scopes: {}
tokenUrl: /oauth/token
clientCredentials:
refreshUrl: /oauth/token
scopes: {}
tokenUrl: /oauth/token
type: oauth2
TokenAuth:
description: Session token for user authentication during OAuth authorization
scheme: bearer
type: http