BP

bp Open Fleet Retail Site Information API

Comprehensive bp and Aral retail site data. GET /sites returns address, contact details, retail site features such as ATM and car wash, operating hours and holiday schedules, site amenities, fuel and non-fuel products, and EV charging availability, filtered by a required CountryCode. The only Open Fleet product with no sandbox environment. Published rate limit 100 requests per second.

Operations 2

GET /health-check
GET /sites

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bp-fleet-retail-site-information"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bp-fleet-retail-site-information-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "BP.B2BSemarchy.WebAPI",
    "version": "1.0"
  },
  "paths": {
    "/health-check": {
      "get": {
        "tags": [
          "HealthCheck"
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/sites": {
      "get": {
        "tags": [
          "Sites"
        ],
        "parameters": [
          {
            "name": "CountryCode",
            "in": "query",
            "required": true,
            "schema": {
              "minLength": 2,
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 10
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/TransformedSiteResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TransformedSiteResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TransformedSiteResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              }
            }
          },
          "500": {
            "description": "Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorDetailsEntity"
                }
              }
            }
          }
        }
      }
    }
  },
  "security": [
    {
      "Bearer": []
    }
  ],
  "components": {
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Enter only the JWT token. Do not include the word 'Bearer'."
      }
    },
    "schemas": {
      "AvailabilitySchedule": {
        "type": "object",
        "properties": {
          "mondayFrom": {
            "type": "string",
            "nullable": true
          },
          "mondayTo": {
            "type": "string",
            "nullable": true
          },
          "tuesdayFrom": {
            "type": "string",
            "nullable": true
          },
          "tuesdayTo": {
            "type": "string",
            "nullable": true
          },
          "wednesdayFrom": {
            "type": "string",
            "nullable": true
          },
          "wednesdayTo": {
            "type": "string",
            "nullable": true
          },
          "thursdayFrom": {
            "type": "string",
            "nullable": true
          },
          "thursdayTo": {
            "type": "string",
            "nullable": true
          },
          "fridayFrom": {
            "type": "string",
            "nullable": true
          },
          "fridayTo": {
            "type": "string",
            "nullable": true
          },
          "saturdayFrom": {
            "type": "string",
            "nullable": true
          },
          "saturdayTo": {
            "type": "string",
            "nullable": true
          },
          "sundayFrom": {
            "type": "string",
            "nullable": true
          },
          "sundayTo": {
            "type": "string",
            "nullable": true
          },
          "holidayFrom": {
            "type": "string",
            "nullable": true
          },
          "holidayTo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ErrorDetailsEntity": {
        "type": "object",
        "properties": {
          "errorCode": {
            "type": "integer",
            "format": "int32"
          },
          "errorMessage": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "TransformedSite": {
        "type": "object",
        "properties": {
          "siteId": {
            "type": "string",
            "nullable": true
          },
          "siteName": {
            "type": "string",
            "nullable": true
          },
          "siteName2": {
            "type": "string",
            "nullable": true
          },
          "brand": {
            "type": "string",
            "nullable": true
          },
          "siteType": {
            "type": "string",
            "nullable": true
          },
          "siteTypeDescription": {
            "type": "string",
            "nullable": true
          },
          "addressLine1": {
            "type": "string",
            "nullable": true
          },
          "addressLine2": {
            "type": "string",
            "nullable": true
          },
          "addressLine3": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "houseNumber": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "regionCode": {
            "type": "string",
            "nullable": true
          },
          "regionName": {
            "type": "string",
            "nullable": true
          },
          "countryCode": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "string",
            "nullable": true
          },
          "longitude": {
            "type": "string",
            "nullable": true
          },
          "retailChannelOfTrade": {
            "type": "string",
            "nullable": true
          },
          "statusName": {
            "type": "string",
            "nullable": true
          },
          "evChargingAvailable": {
            "type": "boolean"
          },
          "recordModifiedDate": {
            "type": "string",
            "nullable": true
          },
          "recordCreatedDate": {
            "type": "string",
            "nullable": true
          },
          "workPhoneNumber": {
            "type": "string",
            "nullable": true
          },
          "retailSiteFeatures": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "retailSiteFoodShops": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "retailSiteOperatingHours": {
            "type": "object",
            "additionalProperties": {
              "$ref": "#/components/schemas/AvailabilitySchedule"
            },
            "nullable": true
          },
          "retailSiteProducts": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "TransformedSiteResponse": {
        "type": "object",
        "properties": {
          "moreSitesAvailable": {
            "type": "boolean"
          },
          "numberOfRecords": {
            "type": "integer",
            "format": "int32"
          },
          "sites": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TransformedSite"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    }
  }
}