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_KEY
Security 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.com/v1
For testing and development, use our sandbox environment:
https://sandbox-api.metro2reporting.com/v1
Rate Limiting
To ensure system stability, the API implements rate limiting:
- Production: 10 requests per minute, up to 1,000 records per request
- Sandbox: 5 requests per minute, up to 100 records per request
Rate limit information is included in the response headers:
X-RateLimit-Limit: 10 X-RateLimit-Remaining: 8 X-RateLimit-Reset: 1620000000
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