Bridge API DocsBridge API Docs
Bridge API Docs

API Reference

Detailed information on all available API endpoints

API Reference

Bridge Developer API provides several endpoints for different financial operations. All endpoints require authentication and return JSON responses.

Base URL

https://api.bridgeagw.com

Available Endpoints

Payment Processing

Account Management

Communication

Common Request Headers

All API requests must include the following headers:

Authorization: Basic <base64_encoded_credentials>
Content-Type: application/json

Common Response Format

All API responses follow a consistent format:

Success Response

{
  "response_data": {
    // Endpoint-specific data
  },
  "response_message": "Success",
  "response_code": "000"
}

Error Response

{
  "response_message": "Error description",
  "response_code": "Error code"
}

Rate Limits

API requests are subject to rate limiting to ensure fair usage:

  • Rate Limit: 100 requests per minute per API key
  • Burst Limit: 20 requests per second

If you exceed these limits, you'll receive a 429 Too Many Requests response.

Error Handling

The API uses standard HTTP status codes and custom response codes:

  • 200 OK: Request successful
  • 400 Bad Request: Invalid request parameters
  • 401 Unauthorized: Authentication failed
  • 429 Too Many Requests: Rate limit exceeded
  • 500 Internal Server Error: Server error

For detailed error codes, see the Response Codes section.

Testing

You can test the API endpoints using:

  1. Postman Collection: Import our Postman collection
  2. cURL: Use the examples provided in each endpoint documentation
  3. SDK: Use our official SDKs (coming soon)

Support

If you need help with any API endpoint or encounter issues, please contact our support team.