Create an API Resource in API Platform
31 May 2022 (Updated 1 June 2022)
1. Generate an entity and mark it as an API resource
If you haven’t already, install the maker bundle with symfony composer req maker
.
Generate an entity:
Give it a name (e.g., CheeseListing
).
When asked, choose to mark the class an API Platform resource.
This will create a src/Entity/CheeseListing.php
file that looks something like:
Marking the entity as an ApiResource adds the #[ApiResource]
annotation.
2. Generate and run migration
Generate migration:
Check generated migration to ensure it’s what you want and then run:
3. Browse Swagger docs for new resource
Visit /api
and you should see the endpoints for your new resource:

You can also view the routes for the resource with:
Example output:
Tagged:
API Platform
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment