API Reference

Check SAT contributor lists

Return Article 69 / 69-B / 69-B Bis listings for an RFC. Local DB lookup, sub-second.

POST /v1/rfc/sat-lists

Returns the SAT-published contributor lists (Article 69, 69-B, 69-B Bis) that an RFC appears in. Local DB lookup, no SAT round-trip, completes in milliseconds. Use for compliance dashboards or KYC checks.

Pricing: free for users on any active plan. Pay-as-you-go callers (no plan, balance only) pay 1 credit per call.

Request body

Field Type Required Description
rfc string Yes The RFC to look up.

Try it

POST /v1/rfc/sat-lists
Try it

Sign in to send a real request from this page.

New accounts get a $5 USD signup credit, no card required.

Example request

curl bash
curl -X POST https://rfccheck.com/v1/rfc/sat-lists \
  -H "x-api-key: rfc_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"rfc": "ACME010101AAA"}'

Response (200)

200 OK json
{
  "rfc": "ACME010101AAA",
  "sat_lists": [
    {
      "article": "69",
      "sub_list": "cancelados",
      "situation": "CANCELADOS POR INSOLVENCIA",
      "name": "ACME CONSULTORES SA DE CV",
      "person_type": "M",
      "state": "CIUDAD DE MEXICO"
    }
  ]
}