Getting Started with Metro 2® API
Overview
The Metro 2® API allows authorized data furnishers to submit consumer credit account information electronically for conversion into the Metro 2® reporting format. Submitted data is validated against Metro 2® standards and processed for transmission to consumer reporting agencies (CRAs).
Metro 2® is the industry standard format for reporting accurate, complete, and timely credit information to the major consumer reporting agencies.
Authentication
All API requests require authentication using API keys. To obtain an API key:
- Log in to your account dashboard
- Navigate to API Settings
- Create a new API key, specifying the appropriate permissions
- Store your API key securely - it will only be displayed once
Include your API key in all requests as an Authorization header:
Authorization: Bearer YOUR_API_KEYSecurity Notice
Never expose your API key in client-side code or public repositories. All API requests should be made server-side.
Base URL
All API requests should be made to the following base URL:
https://api.metro2reporting.comFor testing and development, use our sandbox environment:
https://sandbox-api.metro2reporting.comRate Limiting
Per-key limits currently enforced:
- Submit data: 300 requests / minute
- File upload: 60 requests / minute
- File process: 120 requests / minute
- API key management: 30 requests / minute (superadmin)
A 429 status is returned when exceeded.
Next Steps
Now that you understand the basics, you can:
- Explore the API Reference for detailed endpoint documentation
- Follow our First Submission Guide to make your first API call
- View Sample Code for implementation examples in various languages