Core Resources
Extractions
- Extractions
- Schedulers
Datasource: SAT
- Credentials
- Invoices
- Tax Retentions
- Tax Returns
- Tax Compliance Checks
- Tax Status
- Electronic Accounting
Datasource: RPC
- Entidades
Datasource: RUG
- Operaciones
- RUG Garantias
- Garantias
Datasource: Syntage
- Score
Datasource: Buró de Crédito
- Reports
- Authorizations
Insights
- Invoicing Annual Comparison
- Vendor Network
- Customer Network
- Customer Concentration
- Supplier Concentration
- Employees
- Expenditures
- Financial Institutions
- Financial Ratios
- Government Supplier
- Invoicing Blacklist
- Risks
- Sales Revenue
- Trial Balance
- Scores
- Cash Flow
- RPC Shareholders
- Balance Sheet
- Income Statement
- Invoicing Concentration
Webhooks
- Overview
- Webhook Endpoints
- Webhook Requests
Retrieve an Entity
GET
/
entities
/
{entityId}
curl --request GET \
--url https://api.syntage.com/entities/{entityId} \
--header 'X-API-Key: <api-key>'
{
"@context": "/contexts/Entity",
"@id": "/entities/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "Link",
"id": "e0a24894-7fbf-48ae-bfb0-efaae30a6319",
"type": "company",
"taxpayer": {
"@id": "/taxpayers/PEIC211118IS0",
"@type": "Taxpayer",
"id": "PEIC211118IS0",
"personType": "physical",
"registrationDate": "2023-12-25",
"name": "Pedro Infante Cruz"
},
"credential": {
"@id": "/credentials/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "Credential",
"id": "91106968-1abd-4d64-85c1-4e73d96fb997",
"type": "ciec",
"rfc": "PEIC211118IS0",
"status": "pending",
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
},
"tags": [
{
"@id": "/entity-tags/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "EntityTag",
"id": "e0a24894-7fbf-48ae-bfb0-efaae30a6319",
"name": "Important Taxpayer",
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
}
],
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
}
Authorizations
Your API key is available in the Production and Sandbox dashboards.
Path Parameters
Response
200
application/ld+json
Entity resource response
The response is of type object
.
curl --request GET \
--url https://api.syntage.com/entities/{entityId} \
--header 'X-API-Key: <api-key>'
{
"@context": "/contexts/Entity",
"@id": "/entities/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "Link",
"id": "e0a24894-7fbf-48ae-bfb0-efaae30a6319",
"type": "company",
"taxpayer": {
"@id": "/taxpayers/PEIC211118IS0",
"@type": "Taxpayer",
"id": "PEIC211118IS0",
"personType": "physical",
"registrationDate": "2023-12-25",
"name": "Pedro Infante Cruz"
},
"credential": {
"@id": "/credentials/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "Credential",
"id": "91106968-1abd-4d64-85c1-4e73d96fb997",
"type": "ciec",
"rfc": "PEIC211118IS0",
"status": "pending",
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
},
"tags": [
{
"@id": "/entity-tags/91106968-1abd-4d64-85c1-4e73d96fb997",
"@type": "EntityTag",
"id": "e0a24894-7fbf-48ae-bfb0-efaae30a6319",
"name": "Important Taxpayer",
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
}
],
"createdAt": "2020-01-01T12:15:00.000Z",
"updatedAt": "2020-01-01T12:15:00.000Z"
}
Assistant
Responses are generated using AI and may contain mistakes.