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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/prometeo-identity-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
OpenAPI Specification
openapi: 3.2.0
info:
title: Prometeo Account Validation Identity API
description: Prometeo is a LatAm-founded (Uruguay) fintech infrastructure platform exposing a single financial API over 7,500+ banking connections across the Americas. Products include the Banking API (account access, movements, transfers), Account Validation, Cross-Border payments (pay-in / payout / FX), the Payment (account-to-account) API, Identity (Mexico CURP), and Fiscal (DIAN / SAT / CEP / BCU). All products authenticate with an X-API-Key header.
termsOfService: https://prometeoapi.com/en/legal/msa
contact:
name: Prometeo Support
url: https://docs.prometeoapi.com
email: sales@prometeoapi.com
version: '1.0'
servers:
- url: https://banking.prometeoapi.net
description: Banking API - production
- url: https://banking.sandbox.prometeoapi.com
description: Banking API - sandbox (mock data)
security:
- ApiKeyAuth: []
tags:
- name: Identity
description: Mexico CURP query and reverse query.
paths:
/query:
post:
operationId: curpQuery
tags:
- Identity
summary: Query Mexican CURP data by CURP code
servers:
- url: https://identity.prometeoapi.net
description: Identity API - production
- url: https://identity.sandbox.prometeoapi.com
description: Identity API - sandbox
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
curp:
type: string
required:
- curp
responses:
'200':
description: CURP record.
content:
application/json:
schema:
type: object
/reverse-query:
post:
operationId: curpReverseQuery
tags:
- Identity
summary: Resolve a CURP from demographic data
servers:
- url: https://identity.prometeoapi.net
description: Identity API - production
- url: https://identity.sandbox.prometeoapi.com
description: Identity API - sandbox
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
first_surname:
type: string
last_surname:
type: string
birthday:
type: string
gender:
type: string
state:
type: string
responses:
'200':
description: CURP resolved.
content:
application/json:
schema:
type: object
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: X-API-Key
description: All Prometeo products authenticate with a per-account API key sent in the X-API-Key request header. Keys are issued from dashboard.prometeoapi.com; the sandbox key is available immediately on first login.